StoreApp - 기본 셋팅하기

송민경's avatar
Apr 08, 2024
StoreApp - 기본 셋팅하기

1. 프로젝트 생성하기

notion image
 
  • 네이티브를 만져야할 경우에 어떤 언어로 할지 물어보는 것
notion image
notion image
 
  • esc 눌러서 박스 없애기
 
runApp이 실행되면서 build가 실행됨 / 콜백 됨=자동 실행
import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // 디폴트 생성자 -> 생략 가능 @override Widget build(BuildContext context) { return const Placeholder(); } }
notion image
notion image
 
  • flutter 공식 문서보기
  • widget 공부하기
여기에도 없으면 직접 그려야함
 

2. 이미지 파일 다운받기

notion image
notion image
  • 7zip으로 압출 풀기
기본 프로그램으로 압축 풀 경우 깨지는 경우도 있음
 

3. 프로젝트 관리하기

notion image
 
Share article
RSSPowered by inblog