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

🎁 Dialog 플러터에서 기본적인 다이얼로그는 showDialog 함수를 사용하여 Dialog 위젯을 띄운다. showDialog( context: context, builder: (BuildContext context) { return Dialog( alignment: Alignment.center, shape: RoundedRectangleBorder( borderRadius: BorderRadius.all(Radius.circular(16.0)), ), child: Container(...), ); }, ); Dialog 위젯의 child 로 다이얼로그의 화면을 직접 그릴 수 있고 alignment 인자로 다이얼로그의 화면에서의 위치를 정할 수 있다. 😶 간단한 예시) import 'package..
Flutter
2023. 4. 20. 21:14