(bit) set a Background Image Widget build(BuildContext context) { return Scaffold( body: Container( decoration: BoxDecoration( image: DecorationImage( image: AssetImage('images/background.png'), fit: BoxFit.cover, )), TIL/Flutter 2022.09.27
OOP(객체 지향 프로그래밍) 4대 기본원칙 1. 추상화 (Abstraction) 모듈화(class 활용) : main파일에 모든 기능을 구현하는 것이 아닌, 각 기능을 구체화하여 분리함 2. 캡슐화 (Encapsulation) 참조하는 class의 property와 method 안의 값을 직접 접근(변경)을 지양함 _variable 3. 상속 (Inheritance) void main() { Car myCar = Car(); print(myCar.numberOfDoor); myCar.drive(); ElectricCar newCar = ElectricCat(); print(newCar.batteryLevel); newCar.recharge(); } class Car { int numberOfDoor = 4; void drive() { print(.. TIL/Flutter 2022.09.25
(Error) 조치방법 정리 The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-29). 1. build.gradle 에서 compileSdkVersion 31, targetSdkVersion 31 이상으로 변경 2. AndroidManifext.xml 에서 아래 추가 Build failed due to use of deprecated Android v1 embedding. android\app\src\main\AndroidManifest.xml파일에서 androi.. TIL/Flutter 2022.09.10
(3) 기기에 App 배포하기 Android 1. Enable Developer Mode 2. Enable USB Debugging 3. Connect Phone with USB 4. Trust your computer if prompted 5. Run App from Android Studio TIL/Flutter 2022.09.10
(2) 앱 아이콘 만들기 https://appicon.co/ 접속해서 iPhone, Android 이미지 생성 App Icon Generator appicon.co > Android 이미지 덮어쓰기 경로 Project > android > app > src > main > res > mipmap-( )dpi > iPhone 이미지 덮어쓰기 경로 Project > ios > Runner > Assets.xcassets 원형 아이콘 만들기 Project name 오른쪽 버튼 > Flutter > open android module in android studio 메뉴에서 이미지 불러온 다음 크기 조절 후 저장 TIL/Flutter 2022.09.09
(1) Flutter 사전 환경설정 flutter.dev/docs/get-started 1. git 설치 - https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.37.3) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 9 days ago, on 2022-08-30. Other Git for Windows downloads Standalone Installer 32-bit Git for Wind git-scm.com 2. Flutter SDK 설치 C:\src\flut.. TIL/Flutter 2022.09.09