[Flutter] flutter 프로젝트 만들기
vscode에서 Dart, Flutter 플러그인 설치를 한다. 팔레트에서 flutter 프로젝트를 생성한다. lib : 주 작업 폴더 pubspec.yaml : 라이브러리 및 설정을 하는 폴더 android : Android 프로젝트 폴더 ios : IOS 프로젝트 폴더 web : Web 프로젝트 폴더 Main.dart 파일 작성하기 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) { re..
2023.04.26