일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- aduino
- Unity
- Class
- flutter
- APP
- Android
- SERIAL
- length
- inheritance
- memory
- preprocessing
- mfc
- UNO
- Read
- wpf
- c++
- Barcode
- Overloading
- file access
- Contour
- sensor
- java
- atmega328
- Encapusulation
- public
- stream
- parameter
- Pointer
- compare
- digitalRead
Archives
- Today
- Total
목록toast (2)
폴크(FOLC)

# Flutter 로 App 을 개발하는 과정에서 자주 이용되는 툴 ( 툴 버전은 최신으로 이용 권장 ) > 상태 관리 툴 - GetX : https://pub.dev/packages/get > 카메라 제어 툴 - image_picker : https://pub.dev/packages/image_picker > 통신 제어 툴 - http : https://pub.dev/packages/http > 이미지 조회 툴 - photo_view : https://pub.dev/packages/photo_view > 처리중 툴 - modal_progress_hud : https://pub.dev/packages/modal_progress_hud > 메시지 제어 툴 - toast : https://pub.dev/pa..
Flutter, Android/Flutter 사용법
2021. 10. 31. 17:35

# toast message 이용 > 화면에 message 를 표시 해준다. # 소스 코드 > import 'package:fluttertoast/fluttertoast.dart'; > > Fluttertoast.showToast( > msg: "메시지내용", > toastLength: Toast.LENGTH_SHORT, > gravity: ToastGravity.CENTER, > timeInSecForIosWeb: 1, > backgroundColor: Colors.red, > textColor: Colors.white, > fontSize: 26.0 > );
Flutter, Android/Flutter 사용법
2021. 8. 28. 23:43