Flutter/12 Clone 'Used Goods app'
[Flutter] Clone - 당근마켓3(PageView)
unsungIT
2022. 7. 15. 05:29
이번에는 PageView 에 대해서 알아보겠습니다.
개발환경 : 윈도우11, 안드로이드 스튜디오, flutter 3.0.1
기본 화면은 아래와 같습니다.
./src/screens/auth_screen.dart
import 'package:flutter/material.dart';
class AuthScreen extends StatelessWidget {
const AuthScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: PageView(
children: <Widget>[
const Center(
child: Text(
'AuthScreen',
style: TextStyle(color: Colors.black, fontSize: 20.0, fontWeight: FontWeight.bold),
),
),
Container(color: Colors.accents[2]),
Container(color: Colors.accents[4]),
],
),
);
}
}