아이폰에는 back 버튼이 없지만, 안드로이드 폰에서는 back 버튼을 통해서 이전 화면으로 되돌아 가게 된다.@override Widget build(BuildContext context) { return WillPopScope( onWillPop: () async => false, child: DefaultTextStyle( // 위젯들이 있다 치고... ), ); } onWillPop: () async => false, 위의 코드 추가로 WillPopScope 에서 이전 화면으로 되돌아 가는 문제가 해결 되었다.
1. 서버에서 내려 주는 문자열{"RESULT":"OK","MESSAGE":"로그인 되었습니다.","NEXTPAGE":"/main"} 2. model 개체 생성class Login { String RESULT; String MESSAGE; String NEXTPAGE; Login({ this.RESULT, this.MESSAGE, this.NEXTPAGE, }); factory Login.fromJson(Map parsedJson) { return Login( RESULT: parsedJson['RESULT'], MESSAGE: parsedJson['MESSAGE'], NEXTPAGE: parsedJson['NEXTPAGE'], ); } } 3. 파싱 코드var data= new model.Login.f..
http 패키지(https://pub.dartlang.org/packages/http) 를 이용하여 문자열을 내려 받을때 한글이 깨지는 경우final response = await http .post('https://targeturl.pr.kr', body: {'userid' : userid.text, 'userpw' : userpw.text}) .timeout(Duration(seconds: 3)); if (response.statusCode == 200) { print('데이터 수신 ' + response.contentLength.toString() + 'byte'); print(response.body); // 한글 깨짐 print(utf8.decode(response.bodyBytes)); // ..
- Total
- Today
- Yesterday
- dart
- kotlin
- 엘리스센터
- web
- Mobile
- gpkiapi
- Flutter
- SSL
- ssh
- Fun
- samba
- Spring
- Linux
- MySQL
- json parse
- HTTP
- place
- Java
- devel
- TIP
- JavaScript
- 맛집
- Review
- Security
- food
- Compile
- springboot
- development
- Android
- devtools
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |