INNER CODE UNIT · Dart
MyHomePage
mitesh77/Best-Flutter-UI-Templates · best_flutter_ui_templates/lib/home_screen.dart:5
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
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();
}