[Flutter]Scaffold
-
[Flutter]Scaffold웹 and 앱 프로그래밍/Flutter 2022. 12. 24. 21:31
Scaffold 의기본 구성 EX) Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('Sample Code'), ), body: Center( child: Text('You have pressed the button $_count times.'), ), bottomNavigationBar: BottomAppBar( child: Container( height: 50.0, ), ), floatingActionButton: FloatingActionButton( onPressed: () => setState(() { _count++; }), tooltip: 'Increment Counter', child: Ic..