Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- textstyle
- 크롤러
- 플러터
- python
- 코틀린
- animation
- function
- set
- ML
- 파이썬
- Flutter
- 콜렉션
- map
- 다트
- variable
- List
- text
- import
- 클래스
- package
- 함수
- crawler
- DART
- kotlin
- 웹크롤러
- Yocto
- Class
- pushnamed
- Android
- Collection
Archives
- Today
- Total
조용한 담장
Flutter : 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() 를 통해 사용자의 입력 값을 얻는다.
TextField, obsecureText
입력받은 문자열을 가려서 보여준다. password 입력의 예.
TextField, decoration
TextEditingController 를 사용하여 입력 데이터를 얻는다.
addListner() 를 통해 초기화를 해주고 더이상 필요 없을 시 별도로 dispose() 를 해줘야 한다.
InputDecoration 를 사용하여 입력칸의 모양을 꾸민다.
Reference
'Flutter' 카테고리의 다른 글
Flutter 1.9 (0) | 2019.09.11 |
---|---|
Flutter : Form (0) | 2019.09.06 |
Flutter : BuildContext (0) | 2019.09.05 |
ListView (0) | 2019.08.08 |
url_launcher (0) | 2019.08.07 |
Comments