일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DART
- 클래스
- kotlin
- 코틀린
- 파이썬
- text
- pushnamed
- List
- 플러터
- Flutter
- Yocto
- variable
- 웹크롤러
- python
- textstyle
- animation
- 크롤러
- package
- set
- Collection
- Class
- ML
- function
- crawler
- Android
- 함수
- import
- 다트
- map
- 콜렉션
- Today
- Total
목록Flutter (47)
조용한 담장
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 같은 사용자의 입력을 받을 수 있는 다양한 위젯들을 통해 여러 정보들을 하나의 그룹으로 묶어 처리하고자 할때 쓴다. 회원가입 페이지를 예로 생각해보면 용도를 이해하기 쉽다. 가입 페이지에 있는 여러개 입력란을 통해 값을 입력하고 저장하는 과정과 관련된 위젯들을 담..
Flutter 의 텍스트 입력을 받는 위젯이다. TextField class TextField({Key key, TextEditingController controller, FocusNode focusNode, InputDecoration decoration: const InputDecoration(), ... }) A text field lets the user enter text, either with hardware keyboard or with an onscreen keyboard. Material Design 의 사용자의 텍스트 입력을 받을 수 있는 위젯이다. Plain TextField 아래 줄만 그려지고 그 위에 문자 입력이 가능하다. onChanged() 를 통해 사용자의 입력 값을 얻는다..
flutter BuildContext null error 발생 뜬금없이 null 과 관련된 에러가 발생했다. ════════ Exception Caught By gesture ═══════════════════════════════════════════════════════════════ The following NoSuchMethodError was thrown while handling a gesture: The method 'save' was called on null. Receiver: null Tried calling: save()대략 Scaffold.of(context) 식의 코드인데 리턴값이 null 인데 method를 호출하려 해서 나는 거였다. context 값에 문제가 있..