6. 플러터 padding 적용

2022. 7. 7. 15:18플러터(Flutter)

class MyCard extends StatelessWidget {
  const MyCard({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('studyFlutter'), //app bar tile 지정
        centerTitle: true,
        backgroundColor: Colors.yellow, //app bar 색상 지정
        elevation: 0.0, // 앱바 그림자 지우기
      ),
      body: Padding( //화면 전채에 패딩
        padding: const  EdgeInsets.fromLTRB(20.0, 40.0, 0.0, 0.0), //패딩값 지정
        child: Column(
          children: const [
            Text('Hi1'),
            Text('Hi2')
          ],
        ),
      ),
    );
  }
}

'플러터(Flutter)' 카테고리의 다른 글

8. 플러터 텍스트 스타일  (0) 2022.07.07
7. 플러터 Center 적용  (0) 2022.07.07
5. 플로터 구조  (0) 2022.07.07
4. Widget(위젯)  (0) 2022.07.07
3. 안드로이드 스튜디오에서 플러터 프로젝트 생성&실행  (0) 2022.07.07