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 | 29 | 30 |
Tags
- scroll
- viewmodel
- ScrollView
- Kotlin
- livedata
- CustomScrollView
- Flutter
- textview
- 안드로이드
- DART
- Coroutines
- 앱
- 계측
- appbar
- Button
- Compose
- activity
- Dialog
- Navigation
- intent
- binding
- data
- drift
- 앱바
- textfield
- TEST
- tabbar
- android
- LifeCycle
- 테스트
Archives
- Today
- Total
목록상태바 (1)
Study Record

🎁 SafeArea Widget 안드로이드와 아이폰에 있는 상태바나 홈버튼 부분(아이폰만 존재)을 없앨 수 있는 위젯이다. argments top: [ true / false ] : 상태바 부분을 포함하지 않는다. bottom [ true / false ] : 홈버튼 부분을 포함하지 않는다. 예시 ) void main() { runApp( MaterialApp( home: HomeScreen(); ) ); } class HomeScreen extends StatelessWidget { const HomeScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( backgroundCo..
Flutter/widget
2023. 4. 23. 22:09