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 | 31 |
Tags
- data
- Dialog
- 계측
- activity
- livedata
- 테스트
- intent
- ScrollView
- 앱
- Button
- tabbar
- Compose
- textview
- DART
- LifeCycle
- 앱바
- appbar
- binding
- drift
- CustomScrollView
- textfield
- viewmodel
- Navigation
- 안드로이드
- TEST
- Kotlin
- scroll
- Coroutines
- android
- Flutter
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