본문 바로가기
반응형

플러터47

How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 아래와 같이 오류 메시지 발생 (Error message as below) unhandled exception: user denied permissions to access the device's location. 해결 방법 : 아래 코드와 같이 permission을 추가하는 코드 작성 (Solution: Write code to add permission like below code) LocationPermission permission = await Geolocator.requestPermission(); // 추가!.. 2022. 10. 19.
[Flutter] Change flutter version (downgrade, upgrade) (플러터 버전 바꾸기 (다운그레이드, 업그레이드)) [Flutter] Change flutter version (downgrade, upgrade) 플러터 버전 바꾸기 (다운그레이드, 업그레이드) 플러터를 사용하다가 실수로 업그레이드 하거나 하는 이유로, 잘 빌드되던 기존 코드가 빌드에 실패하는 불상사가 발생하곤 한다. 이 때는 당황하지 말고 플러터 버전을 다운그레이드하면 된다! (For reasons such as accidentally upgrading while using Flutter, Existing code that was built well often fails to build. In this case, don't panic and just downgrade the Flutter version!) 1. 아래 링크를 타고 들어가면, flutte.. 2022. 9. 6.
[Flutter] apk build command (debug, release available) (apk 빌드 명령(debug, release 가능)) [Flutter] apk build command (debug, release available) apk 빌드 명령(debug, release 가능) - build for debug flutter build apk --debug --target-platform=android-arm64 - build for release flutter build apk --release --target-platform=android-arm64 2022. 8. 31.
[flutter_email_sender] How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) flutter_email_senderHow to implement email sending in a flutter project(플러터 프로젝트에서 이메일 보내기 구현하는 방법) 우선 프로젝트에 flutter_email_sender 라이브러리를 설치한다. (First of all, the flutter email _ sender to install the library.)dependencies: flutter_email_sender: ^5.1.0 소스코드에서는 아래와 같이 라이브러리를 import한다. (Source code import the library as follows.)import 'package:flutter_email_sender/flutter_email_sender.dart';  이메일.. 2022. 8. 29.
반응형