일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- bash
- 이모지메모
- recyclerview
- FSM
- 장자명언
- 좋은글필사하기
- 벤자민플랭클린
- 1인개발자
- Streaming
- kotlin
- Flutter
- 넷플릭스
- DART
- androidx
- 공부집중
- jetpack compose
- Android
- 소울칼리버6
- Firebase
- 명언모음
- 코틀린
- Coroutine
- Freesound
- 공자명언
- Linux
- 명심보감
- 오픈소스
- 이모지
- 파이썬
- ASMR
- Today
- Total
목록Flutter (29)
Vintage appMaker의 Tech Blog
Stream을 이용한 비동기 프로그래밍 Stream, StreamController를 이용한 비동기 프로그래밍을 정리 dartpad로 실행하기 1. Stream 클래스의 fromIterable fromIterable 함수의 파라메터로 iterable(==list형) 값들을 넘겨서 비동기 프로그래밍에서 순차적인 프로그래밍을 구현할 수 있다. listen()에서 값을 처리한다. Future doAsyncWork(int n, int delay) async { // Future 함수에서 await를 사용하면 비동기에서 순차적으로 처리가능하다. // await를 호출한 함수는 async로 정의해주어야 한다. await Future.delayed(Duration(seconds: delay)); print("$n w..
🥙 소스코드가 마음에든다. 특히 Provider pattern을 쉽게 구현해놓았다. ebook 관련 오픈API인 feedbooks api 를 사용했다. 그리고 Network 통신으로는 Dio를 사용했다. JideGuru/FlutterEbookApp A simple Flutter app to Read and Download eBooks. Contribute to JideGuru/FlutterEbookApp development by creating an account on GitHub. github.com
🌭 flutterawesome에서 검색가능한 List 학습용 소스(UI 및 소스코드가 깔끔함). 개발자가 애니메이션 오타쿠로 추정됨. 미소녀로 도배된 UI임. luckybilly/multi_type_list_view A flutter customer ListView that displays multiple widget types. - luckybilly/multi_type_list_view github.com VSCode에서 빌드도 잘되고 에뮬레이터에서도 문제없이 실행됨.
🍱 Flutter 공부를 위한 공식앰. 눈에 띄는 예제위주로 되어 있다. Flutter Gallery - Google Play 앱 A gallery of widgets and behaviors, plus demos and vignettes, all built with Flutter. Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. This app is open source. Chec play.google.com 🍱 개발자라면 이 앱을 추천할 것이다. 필요한 코드만 깔끔하게 예제로 되어 있다. - 이 앱의 소..