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
- android
- 앱
- 안드로이드
- 테스트
- textview
- 앱바
- appbar
- TEST
- DART
- 계측
- tabbar
- data
- Compose
- Button
- Coroutines
- livedata
- binding
- scroll
- Navigation
- activity
- drift
- textfield
- intent
- ScrollView
- Flutter
- CustomScrollView
- Kotlin
- LifeCycle
- viewmodel
- Dialog
Archives
- Today
- Total
목록모서리가둥근 (1)
Study Record
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cp8g5E/btsbtfUu7Ky/z2t61MUSHRDPkV0kDpkGQK/img.gif)
🎁 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