일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Barcode
- stream
- wpf
- java
- Encapusulation
- length
- Binary
- inheritance
- sensor
- UNO
- Read
- Overloading
- Android
- flutter
- preprocessing
- Contour
- mfc
- parameter
- Unity
- compare
- aduino
- Class
- memory
- atmega328
- APP
- SERIAL
- public
- Pointer
- file access
- digitalRead
Archives
- Today
- Total
목록exit (1)
폴크(FOLC)
Flutter App 종료 확인 메시지
# 생성 페이지에 옵션 추가 # WillPopScope 함수 이용 > 기본 생성 방식 @override Widget build(BuildContext context) { return Scaffold(appBar: AppBar(), body: XXXFunction()); } > 옵션 생성 방식 ( 종료 확인 메시지 표시 ) @override Widget build(BuildContext context) { return WillPopScope( child: Scaffold(appBar: AppBar(), body: XXXFunction()), onWillPop: _onWillPop); } Future _onWillPop() { return showDialog(context:context, builder: (..
Flutter, Android/Flutter 사용법
2021. 7. 10. 11:55