4차산업혁명의 일꾼/앱

[왕초보] 플러터(Flutter)로 시작하는 앱개발 1주차 - 스파르타코딩클럽

르무엘 2023. 4. 11. 02:31

[왕초보] 플러터(Flutter)로 시작하는 앱개발 1주차 - 스파르타코딩클럽

Flutter vs React Native: The Ultimate Comparison (getstream.io)

 

Flutter vs React Native: The Ultimate Comparison

Which platform is better: Flutter or React Native? Stream covers each framework so you can make the best choice for your next mobile app.

getstream.io

플러터 위젯

https://docs.flutter.dev/development/ui/widgets

 

Widget catalog

A catalog of some of Flutter's rich set of widgets.

docs.flutter.dev

 

플러터 인스톨

Windows install | Flutter

 

Windows install

How to install on Windows.

docs.flutter.dev

[경로설정]

환경변수 bin폴더를 설정하고 flutter --version 으로 버전확인 되면 설치 완료

[vccode 확장팩]

vscode에서 flutter 확장팩 설치(dart자동설치)

[안드로이드 스튜디오 sdk 설정시 한글있을 경우 경로 변]

mklink /D C:\android-sdk 안드로이드 설치위치

[안드로이드 설정 세팅에서 sdk tools 설치]

Android SDK Command-line Tools (latest) 를 선택한 뒤 OK 를 선택해 주세요.

[안드로이드 api level 29의 q버전으로 가상머신 설치]

Q 버전의 OS를 선택한 뒤 Next 버튼을 눌러 주세요. API Level 29인지 확인해주세요 :)

 

[플러터 실행가능보기]

flutter doctor

[android 체인 라이선스 승인 명령어]

flutter doctor --android-licenses

[flutter 윈도우 승인을 위한 명령어]

flutter channer master

[flutter 윈도우 승인을 위한 업그레이드 명령어]

flutter upgrade

 

[플러터 프로젝트]

vscode 에서 ctrl +shift + p 로 플러터 프로젝트 생성

 

 

main.dart, analysis_options.yaml 파일 세팅

 

view - command palate [ctrl +shift + p ]

 

 

[위젯 Catalog URL]

Widget catalog | Flutter

 

Widget catalog

A catalog of some of Flutter's rich set of widgets.

docs.flutter.dev

 

Flutter Widget of the Week - YouTube

 

Flutter Widget of the Week

Fighting the good fight for Widget Awareness! Widget of the Week is a series of quick, animated videos, each of which covers a particular widget from the Flu...

www.youtube.com

 

[플러터 커뮤니티]

Community (flutter.dev)

 

Community

Find Flutter community anywhere. Join developers around the world making Flutter even better.

flutter.dev

 

[ Dart패드, 온라인에서 Dart 실행하는 웹사이트]

DartPad

 

DartPad

 

dartpad.dev

 

[Dart 공식 문서 URL]

Dart basics | Dart

 

Introduction to Dart

A brief introduction to Dart programs and important concepts.

dart.dev

 

[Dart 문법]

Dart 문법 상세 (notion.site)

 

Dart 문법 상세

Dart 문법

teamsparta.notion.site

 

자료형 (= 바구니에 담을 수 있는 값의 종류)

var : 처음 담긴 값으로 타입이 지정됩니다.

String : 문자만 담을 수 있습니다.

String? : 문자 또는 비어있는(null) 상태일 수 있습니다.

final String : 문자를 한 번 담은 뒤 재할당 불가능합니다.

String class - dart:core library - Dart API

 

String class - dart:core library - Dart API

A sequence of UTF-16 code units. Strings are mainly used to represent text. A character may be represented by multiple code points, each code point consisting of one or two code units. For example the Papua New Guinea flag character requires four code unit

api.dart.dev

 

 

function - "Parameter" vs "Argument" - Stack Overflow

 

"Parameter" vs "Argument"

I got parameter and argument kind of mixed up and did not really pay attention to when to use one and when to use the other. Can you please tell me?

stackoverflow.com

 

DartPad

 

DartPad

 

dartpad.dev

 

DartPad

 

DartPad

 

DartPad

 

dartpad.dev

DartPad

 

DartPad

 

dartpad.dev

클래스(위) 상속(아래)

DartPad

 

DartPad

 

dartpad.dev

 

[ 숙제]

 

 

 

LIST