[Flutter]기본 레이아웃 구성

코드왕·2023년 3월 12일
0
post-custom-banner

플러터 기본 레이아웃(Scaffold이용)

플러터를 이용해서 상단,바디,하단의 레이아웃을 구성한다.

   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),
            ],
          )
        ),
      )
    );
profile
CODE DIVE!
post-custom-banner

0개의 댓글