플러터 - materalApp 구조 > 프로그래밍

본문 바로가기

프로그래밍

플러터 - materalApp 구조

본문



접기 [ ▼ 작성자 참고 Source ]
class Suse_App extends StatelessWidget {
  const Suse_App({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(),
        body: Container(),
        bottomNavigationBar: BottomAppBar(),

      )
    );
  }
}


본문

 scaffold() 위젯는 appBar, body, bottomNavigationBar 로 상,중,하로 나눠줍니다


상단바 하단바는 선택이며 body는 필수 입니다


처음 위구조로 만들후 글이나 그림을 원하는 위젯에 넣으면 됩니다.

0 0
로그인 후 추천 또는 비추천하실 수 있습니다.


댓글목록0

등록된 댓글이 없습니다.
게시판 전체검색