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

🎁 fluttertoast 토스트 팝업 메시지를 보여주는 간단한 라이브러리이다. 😶 설치 pubspec.yaml 파일에 fluttertoast 라이브러리를 추가해 준 뒤 pub get 버튼을 누른다. (현재 시각 최신 버전 v8) dependencies: fluttertoast: ^8.2.1 😶 사용법 아주 간단하게 토스트 팝업을 띄우는 것은 Fluttertoast.showToast() 로 띄워주면 된다. import 'package:fluttertoast/fluttertoast.dart'; Fluttertoast.showToast( msg: "토스트 팝업 메시지", toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.TOP, backgroundColor: ..
Flutter/라이브러리
2023. 4. 22. 17:14