이번에는 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]),
],
),
);
}
}
'Flutter > 12 Clone 'Used Goods app'' 카테고리의 다른 글
[Flutter] Clone - 당근마켓5(PageView - intro page) (0) | 2022.07.15 |
---|---|
[Flutter] Clone - 당근마켓4(theme) (0) | 2022.07.15 |
[Flutter] Clone - 당근마켓2(Navigation) (0) | 2022.07.14 |
[Flutter] Clone - 당근마켓1(logger) (0) | 2022.07.13 |
[Flutter] Clone - 당근마켓 시작 (0) | 2022.07.13 |