Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Coroutines
- 테스트
- 앱바
- DART
- LifeCycle
- 안드로이드
- 앱
- drift
- Compose
- Navigation
- activity
- Dialog
- intent
- appbar
- CustomScrollView
- textfield
- Kotlin
- TEST
- viewmodel
- Button
- scroll
- data
- 계측
- Flutter
- livedata
- android
- tabbar
- textview
- binding
- ScrollView
Archives
- Today
- Total
목록SingleChildScrollView (1)
Study Record
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bM5x3Q/btr8Ik3653z/gOeJMrsEoEiv8EnTEzmsY1/img.png)
✍ 입력 폼이 포함된 화면 입력 폼(TextField, TextFormField 등)이 포함된 화면은 키보드가 올라와 화면을 가리면서 overflowed 가 날 수 있다. 이럴 경우 SingleChildScrollView 를 최상단에 위젯 상단에 배치하면 키보드가 올라와도 스크롤이 가능하기 때문에 overflowed 문제가 생기지 않는다. 😶 예시) import 'package:flutter/material.dart'; void main() => runApp(MaterialApp(home: ScrollControlView())); class ScrollControlView extends StatelessWidget { const ScrollControlView({Key? key}) : super(key:..
Flutter
2023. 4. 7. 15:35