4차산업혁명의 일꾼/앱 11

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

[왕초보] 플러터(Flutter)로 시작하는 앱개발 1주차 - 스파르타코딩클럽 flutter pub add provider flutter pub add shared_preferences https://stackoverflow.com/questions/67914668/vs-code-do-you-trust-the-authors-of-the-files-in-this-folder VS Code: Do you trust the authors of the files in this folder? I just launched VS Code 1.57 and see this message: "Do you trust the authors of the files in this folder?" Why am I seeing th..

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

[왕초보] 플러터(Flutter)로 시작하는 앱개발 4주차 - 스파르타코딩클럽 [코드스니펫] 네이버 영어사전 URL https://en.dict.naver.com/#/search?query=hello&range=all 코드스니펫을 복사해 새 탭에서 접속해주세요. [코드스니펫] json 데이터 응답 URL https://jsonplaceholder.typicode.com/posts 코드스니펫을 복사해서 새 탭에서 열어주세요. [코드스니펫] JSON Viewer 확장 프로그램 URL https://chrome.google.com/webstore/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd?hl=ko JSONView 브라우저에서 JSON 문서를 보세요. chrome...

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

[왕초보] 플러터(Flutter)로 시작하는 앱개발 3주차 - 스파르타코딩클럽 https://pub.dev/ Dart packages Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter and general Dart programs. pub.dev https://pub.dev/packages/google_fonts google_fonts | Flutter Package A Flutter package to use fonts from fonts.google.com. Supports HTTP fetching, caching, and asset bundlin..

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

[왕초보] 플러터(Flutter)로 시작하는 앱개발 2주차 - 스파르타코딩클럽 https://dartpad.dev/?id=f8a7bf195ec729c400634d97b10f0f84 https://dartpad.dev/?id=513188d8ad8004aaf524ce52d668d84c DartPad dartpad.dev https://dartpad.dev/?id=185dbad13d31ea8b99d7f83fe1f8ec3a https://dartpad.dev/?id=f8a7bf195ec729c400634d97b10f0f84 DartPad dartpad.dev https://dartpad.dev/?id=513188d8ad8004aaf524ce52d668d84c 플러터 키란 무엇인가? https://nsinc.ti..

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

[왕초보] 플러터(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..

Expo + React 로 앱만들기(vscode)

앱화면을 구성할 때 flex개념을 잘 이해해야 layout을 잡을수 있다. 영역을 차지하는 속성이다. flex는 상대적으로 영역을 잡을수 있다. flexDirection:"row" 로 주면 가로 비율이다. (기본 세팅은 세로 비율이다.) justifyContent 는 flexDirection 과 동일한 방향으로 정렬하는 속성입니다 flexDirection : ' column '에서 justifyContent 는 상하 정렬, flexDirection : ' row '에서 justifyContent 는 좌우 정렬을 뜻합니다. flex-start , center , flex-end , space-between , space-around 속성을 가집니다 1 어떤 태그가 필요할지 생각한 후! ScrollView..