HERO
-
Flutter - Hero Animation[11]Flutter 2021. 1. 31. 19:04
1. 기본 앱 설정 void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } 2. Main Page class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String..