PageView 란 여러 페이지를 좌우로 슬라이드하여 넘길 수 있도록 해주는 위젯입니다.
class MyFirstWidget extends StatelessWidget {
MyFirstWidget({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('PageView Example'),
),
body: PageView(
children: <Widget>[
Container(
width: 100,
height: 100,
color: Colors.green,
),
Container(
width: 100,
height: 100,
color: Colors.red,
),
Container(
width: 100,
height: 100,
color: Colors.blue,
),
],
)
);
}
}
선언해주는 위젯부터 순서대로 들어갑니다. 위젯 1 - 페이지 1 씩입니다.
'개발 > 플러터' 카테고리의 다른 글
[플러터] AnimatedWidget에 대해서 ( 커스텀 애니메이션 위젯 ) (0) | 2020.05.04 |
---|---|
[플러터] BottomNavigationBar 에 대해서 (0) | 2020.05.02 |
[플러터] Appbar 에 뒤로가기 버튼 만들기 (0) | 2020.05.02 |
[플러터] GridView 에 대해서 (0) | 2020.05.01 |
[플러터] ListView 에 대해서 (0) | 2020.05.01 |
댓글