본문 바로가기

분류 전체보기

(132)
[j Flutter] local_auth을 사용하여 지문 인식하기 1. 지문인식에 필요한 플러그인을 설치해준다. https://pub.dev/packages/local_auth/install local_auth | Flutter Package Flutter plugin for Android and iOS devices to allow local authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern. pub.dev 2. 지문인식을 사용 할 dart파일에 추가해준다. import 'package:local_auth/local_auth.dart'; 3. 생체인식을 할 수 있는 폰인지 확인 var _isLocalAuth; @override initState() { super.initState(..
[j Flutter] apk파일 만들기 flutter에서 .apk파일 생성하기 1. 터미널에서 해당 프로젝트 디렉토리로 이동 2. flutter build apk --release --target-platform=android-arm64 3. 파일 경로는 [Project root]/build/app/outputs/apk/release/app-release.apk
[Flutter] Error: The method ‘inheritFromWidgetOfExactType’ isn’t defined for the class ‘BuildContext’ 에러 해결하기 Error: The method ‘inheritFromWidgetOfExactType’ isn’t defined for the class ‘BuildContext’ ↑↑ 해당 에러가 발생 시 해결방법 1. 에러가 표시된 플러그인 버전 업데이트 ex ) As you can see error is in this Path ./.pub-cache/hosted/pub.flutter-io.cn/pull_to_refresh-1.6.3/lib/src/smart_refresher.dart:273:21. pull_to_refresh 플러그인을 버전 업그레이드 해준다. 2. inheritFromWidgetOfExactType 해당 메소드를 DependOnInheritedWidgetOfExactType로 변경해준다. *bef..
[j Flutter] flavor apk 파일 만들기 터미널창으로 이동해서 해당 명령어를 입력한다. APK flutter build apk --flavor prod -t lib/main_prod.dart AppBundle flutter build appbundle --flavor prod -t lib/main_prod.dart * flavor 이름이 prod 이고 main_prod.dart에서 실행을 해준다.
[j Flutter] Swipe Image 사용하기 사진을 옆으로 넘기는 기능을 구현해보자. (Swipe Image) 1. pubspect.yaml 파일에 해당 패키지를 설치해준다. https://pub.dev/packages/swipe_image_gallery/example swipe_image_gallery | Flutter Package A scrollable, dismissable by swiping, zoomable, rotatable image gallery on which you can add a dynamic overlay. pub.dev 2. 이미지 추가하기 project 에 asset 폴더를 만들어준뒤 pubspec.yaml파일에 asset폴더를 추가해준다. 해당 폴더에 사용할 사진을 넣어준다. 3. 구현하기 ImageGalleryCon..
[j Flutter] Getx -> 페이지 이동 1. 페이지 이동을 테스트하기위해 세 개의 페이지를 만들어 준다. -> homepage,firstpage,secendpage 2. homepage에서 firstpage로 페이지를 이동 Get.to(FirstPage()); to() 안에 페이지만 써주면 간단하게 끝난다. 다음은 Get으로 페이지 이동시, 닫았을 때 로그가 나타나는 것을 볼 수 있다. 3. secendpage에서 homepage로 이동 - 페이지 히스토리가 남지않게 한다. Get.offAll(Home()); 4. 뒤로이동 Get.back();
[j Flutter] flutter 2.0 ver - 새로운 버튼 정리 Flutter 2.0 ver 새로운 버튼 정리 1. FlatButton -> TextButton TextButton( onPressed: () {}, child: Text("Text Button"), style: TextButton.styleFrom( primary: Colors.red, //글자색 onSurface: Colors.blue, //onpressed가 null일때 색상 backgroundColor: Colors.green, shadowColor: Colors.orange, //그림자 색상 elevation: 1, // 버튼 입체감 textStyle: TextStyle(fontWeight: FontWeight.bold), padding: EdgeInsets.all(16.0), minimumSi..
[j Flutter] Button class 2021변경사항 일부 Button 클래스가 변경이 되었다. 해당 관련 문서 링크 ↓↓↓ docs.google.com/document/d/1yohSuYrvyya5V1hB6j9pJskavCdVq9sVeTqSoEPsWH0/edit Migrating to the New Material Buttons and their Themes SUMMARY A guide to migrating existing apps to the new Flutter button classes and their themes. Author: Hans Muller (@hansmuller) Go Link: flutter.dev/go/material-button-migration-guide Created: August 2020 / Last updated: Augu..