INNER CODE UNIT · Dart
_MyHomePageState
mitesh77/Best-Flutter-UI-Templates · best_flutter_ui_templates/lib/home_screen.dart:12
class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
List<HomeList> homeList = HomeList.homeList;
AnimationController? animationController;
bool multiple = true;
@override
void initState() {
animationController = AnimationController(
duration: const Duration(milliseconds: 2000), vsync: this);
super.initState();
}
Future<bool> getData() async {
await Future<dynamic>.delayed(const Duration(milliseconds: 0));
return true;
}
@override