일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- setInterval clear
- transfer
- pm2
- DatePicker
- 서버동기화
- invalid data
- pm2 상태 확인
- AntDesign
- setInterval 중지
- 공인IP
- setInterval 외부 정지
- allow_anonymouse
- pm2 시작
- setInterval 정지
- pm2 확인
- pm2 설치
- html #select #option #multiple
- datagridview 직접입력
- timepicker
- mosquitto.conf
- mosquitto
- 데이터테이블 데이터 넣기
- 1883
- map이 undefined가 뜰 때
- c# datagridview 데이터 넣기
- DataGridView 직접 입력
- 맥 어드레스
- listener 1883
- Replication
- mySQL_Replication
- Today
- Total
목록Flutter (4)
개발 노트
auth(인증), fireStore(DBMS), real Database(DBMS) 등을 연동하여 프로젝트를 구현할수 있다. 다른 프로젝트(react)에서는 Hostring 등도 사용할 수 있다. firebase-auth firebase를 통하여 Email 방식의 회원가입, Email 방식의 로그인을 구현할수 있다 google login 등 oAuth2(인증 Token 방식) 방식의 인증을 구현할수 있다. DBMS 연동 : fireStore, real Database NoSQL 방식으로 Data CRUD 를 구현할 수 있고, 1:1 방식의 채팅 구현 Messagage 전달 등도 구현 Flutter 와 firebase 를 연동하기 위하여 사전 도구 설치 Cli 도구 설치 : npm install -g fi..
json 으로 encode 및 decode를 쉽게 도와주는 도구 dart:convert 다음의 기본제공 라이브러리를 추가한다 import 'dart:convert'; Encoding void main() { final items = [ {'id': 1, 'title': 'item 1'}, {'id': 2, 'title': 'item 2'}, ]; print(json.encode(items)); } 결과 [{'id':1,'title':'Item 1'},{'id':2,'title':'Item 2'}] Decoding void main() { const String data = '[{'id':1,'title':'Item 1'},{'id':2,'title':'Item 2'}]'; final items = jso..
환경 구축이 모두 끝난뒤 flutter 작업폴더에서 터미널 명령어를 입력한다 flutter create --org=com.패키지명 프로젝트명
개발환경구축 플러터를 활용함에 있어 필요한것들 - Flutter SDK 설치 https://docs.flutter.dev/get-started/install/windows Windows install How to install on Windows. docs.flutter.dev - 안드로이드 스튜디오 설치 https://developer.android.com/studio?gclid=EAIaIQobChMI4NeC_fKuggMVOA57Bx000w0pEAAYASAAEgJIBvD_BwE&gclsrc=aw.ds Download Android Studio & App Tools - Android Developers Android Studio provides app builders with an integrated d..