일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- kotlin
- 파이썬
- set
- 클래스
- 코틀린
- ML
- 다트
- 플러터
- Android
- List
- textstyle
- texttheme
- function
- map
- Class
- 크롤러
- python
- package
- variable
- Collection
- import
- animation
- crawler
- text
- pushnamed
- Flutter
- 콜렉션
- DART
- 함수
- 웹크롤러
- Today
- Total
목록분류 전체보기 (125)
조용한 담장
원문: Flutter’s iOS Application Bundle Flutter App 은 native view hierarchy 의 single view 에 렌더링 된다. release 용으로 빌드하면 Frameworks directory 에 "App framework bundle" 와 "Flutter framework bundle" 이 생성된다. Flutter Engine framework bundle (Flutter.framework directory) Flutter engine : core libraries, DartVM, Skia. Flutter engine 이 사용하는 assets. AOT framework bundle (App.framework directory) 개발자가 작성한 모든 dar..
마크다운 뭐가 되고 뭐가 안되는지 테스트 Heading Heading 1 Heading 2 Heading 3 Heading 4 Bold bold text Italic italicized text Blockquote blockquote Ordered List First item Indented item Second item Unordered List First item Sub item Second item Code code Horizontal Rule LInk title Image Table Syntax Description Header Title Paragraph Text Fenced Code Block { "firstName": "John", "lastName": "Smith", "age": 25 }F..
Release Notes Flutter 1.9.1 https://github.com/flutter/flutter/wiki/Release-Notes-Flutter-1.9.1 https://developers.googleblog.com/2019/09/flutter-news-from-gdd-china-flutter1.9.html New Features new Material widgets: ToggleButtons widget (called a segmented control on iOS). ColorFilter widget (recolor an entire widget tree according). macOS Catalina Support I should note that you’ll want to upgr..
flutter 의 여러 입력값들을 묶어 처리하는 Form 을 살펴보자. Form class Form({Key key, @required Widget child, bool autovalidate: false, WillPopCallback onWillPop, VoidCallback onChanged }) An optional container for grouping together multiple form field widgets TextField 같은 사용자의 입력을 받을 수 있는 다양한 위젯들을 통해 여러 정보들을 하나의 그룹으로 묶어 처리하고자 할때 쓴다. 회원가입 페이지를 예로 생각해보면 용도를 이해하기 쉽다. 가입 페이지에 있는 여러개 입력란을 통해 값을 입력하고 저장하는 과정과 관련된 위젯들을 담..