CodeingTestPrac
-
1월 31일-Flutter 4 /json 파싱CodeingTestPrac 2022. 1. 31. 21:46
드디어,, json에 데이터를 받아왔다,.. ㅠㅠ https://docs.flutter.dev/cookbook/networking/fetch-data Fetch data from the internet How to fetch data over the internet using the http package. docs.flutter.dev 서버 json 포함 https://1e85ce8f-6ffc-402d-9365-0576000728de.mock.pstmn.io/api/members 복잡한 json 을 파싱하는 작업이 이해 하기 힘들었지만 참고하고 만들었다. https://oowgnoj.dev/post/flutter-json [번역] 복잡한 JSON 파싱하기 in flutter 기억하기 위해 기록합니다. ..
-
1월 28일 -Flutter 3CodeingTestPrac 2022. 1. 29. 18:09
Flutter 와 서버를 서로 연결하는법 server - serving , 서빙하는 직업에서 온 단어 , 지금 이해한 바로는 데이터를 전달, 요청을 들어주는 역할로 이해를 한다. server ex) FireBase , Spring cloud , gcp ? JSON : JavaScript Object Notation (JSON)은 Javascript 객체 문법으로 구조화된 데이터를 표현하기 위한 문자 기반의 표준 포맷입니다. 데이터의 자료구조 중하나로 서버 api 를 통해 전달 받는 데이터의 형식중 하나. JSON 의 문자열 1 . map (key - value) : { } 로 포장되어있다. , 2 . List of Maps [] 로 포장되어있다. JSON 을 서버에서 받아올때 우리는 dart (flutt..
-
Flutter2CodeingTestPrac 2022. 1. 21. 13:46
resource 1. https://icons8.kr/ 무료 아이콘, 클립아트, 사진 및 음악 사진 일러스트레이션 음악 icons8.kr 2. https://www.vecteezy.com/ Download Free Vector Art, Stock Photos & Stock Video Footage Explore royalty-free vectors, clipart graphics, icons, stock photos, stock videos, backgrounds, patterns, banners, and designs from artists around the world! www.vecteezy.com 3. https://dribbble.com/ 3. canva Hotreload: statelessWi..
-
Flutter 1CodeingTestPrac 2022. 1. 20. 15:36
class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title:Text('앱임')), body: Text('안녕'), bottomNavigationBar: BottomAppBar( child: Container( height: 100, child: Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ Icon(Icons.phone), Icon(Icons.message), Ic..