import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
//앱의 뿌리는 위젯이다.
Widget build(BuildContext context) {
return MaterialApp(
//material 디자인
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
MyApp은 StatelessWidget을 상속받고 있다.
모든 위젯은 build메서드를 반드시 가져야 하고 build메서드는 또 다른 위젯을 return한다.
super.key: super는 상위 클래스를 뜻하고, key는 위젯트리에서 상태를 보존하고 싶을 때 사용한다.
@override
Widget build(BuildContext context)
return MaterialApp(
//material 디자인
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
theme: ThemeData
안에 정보들은 현재 Buildcontext노드 안에 저장된다. useMaterial3: true,
는 Material Design 3.0 스타일 사용 가능(기본은 false)final String title;
에서 선언을 해주고 MyHomePage(title: 'Flutter Demo Home Page'),
에서 초기화를 해준다class MyHomePage extends StatefulWidget {
const MyHomePage({
super.key,
required this.title,
});
final String title;
State<MyHomePage> createState() => _MyHomePageState();
}
final String title;
에서 선언을 해주고 MyHomePage(title: 'Flutter Demo Home Page'),
에서 초기화를 해준다<MyHomePage> createState() => _MyHomePageState(); // _'MyHomePageState' 부분의 이름은 개발자가 정하는 것이다
State
class _MyHomePageState extends State<MyHomePage> { //위젯의 상태 관리
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
}
build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
);
}
Widget
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),