๐ ํ๋ฌํฐ ์ค์น

- C๋๋ผ์ด๋ธ ์๋์ ์์ถ ํด์

๐ ์๋๋ก์ด๋ ์คํ๋์ค ์ธํ
- ํ๋ฌ๊ทธ์ธ ๊ฒ์ → flutter ๊ฒ์ ํ ์ค์น, ์ฌ์์


- ํ๋ฌํฐ ์ ํ๋ก์ ํธ ์์

- ํ๊ฒฝ๋ณ์ ์ค์


- ์๋๋ก์ด๋ ์คํ๋์ค์์ analysis_options.yaml์ ์ถ๊ฐ

- main.dart๊ฐ ๋ฉ์ธ ํ์ด์ง๋ฅผ ์๋ฏธ

- hello ์ถ๋ ฅํด๋ณด๊ธฐ
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Text('hello')
);
}
}
