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