일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Overloading
- flutter
- digitalRead
- atmega328
- aduino
- length
- SERIAL
- parameter
- mfc
- Unity
- Class
- public
- wpf
- Binary
- UNO
- file access
- compare
- Read
- Contour
- sensor
- memory
- Pointer
- stream
- Barcode
- inheritance
- Android
- preprocessing
- java
- Encapusulation
- APP
Archives
- Today
- Total
목록MediaQuery (1)
폴크(FOLC)
Flutter App - ListView
# 스크롤 위젯 > 데이터를 순차적으로 표현 # 동작 방식 ( 총 4가지 ) > default 생성자 - child 로 List 을 호출하여 동작 - 목록 보기에 표시될 수 있는 자식에 대해 작업을 수행 - 데이터량이 작은 경우에 이용 > 소스 코드 ListView(children: [ Container(height: 50, color: Colors.amber[600], child: const Center(child: Text('Entry A')), ), Container(height: 50, color: Colors.amber[500], child: const Center(child: Text('Entry B')), ), ],) > builder 생성자 - child 를 빌드하는 IndexedWidge..
Flutter, Android/Flutter 사용법
2022. 3. 17. 14:00