플러터를 이용해서 상단,바디,하단의 레이아웃을 구성한다.
return MaterialApp(
home: Scaffold(
appBar:AppBar(title:Text("앱임")),
body:Text("안녕"),
bottomNavigationBar: BottomAppBar(
child:Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Icon(Icons.phone),
Icon(Icons.message),
Icon(Icons.contacts),
],
)
),
)
);