본문 바로가기

반응형

Flutter

(21)
[Flutter] 앱 아이콘 적용하기 (Android & iOS 한번에) Flutter 는 Android & iOS 한번에 앱 아이콘 적용 가능하다. 이미지 파일 프로젝트에 추가. (512 x 512 사이즈만 가능하다고 한다) pubspec.yaml 파일에 추가 flutter_launcher_icons: ^0.7.2 flutter_icons: android: true ios: true image_path: "images/app_icon.png" dependencies: flutter_launcher_icons: ^0.7.2 dev_dependencies: flutter_test: sdk: flutter flutter_icons: android: true ios: true image_path: "images/app_icon.png" Terminal 에 flutter pub ru..
[Flutter] bottomNavigationBar bottomNavigationBar 의 높이는 constant const double kBottomNavigationBarHeight = 56.0
[Flutter] Admob 연동하기 pubspec.yaml dependencies: flutter_native_admob: ^2.1.0 android/build.gradle file 에 추가 dependencies { // Example existing classpath classpath 'com.android.tools.build:gradle:3.2.1' // Add the google services classpath classpath 'com.google.gms:google-services:4.3.0' } android/app/build.gradle file 에 추가 // ADD THIS AT THE BOTTOM apply plugin: 'com.google.gms.google-services' Firebase 사이트 접속하여 APP..
[Flutter] Widget 테두리 설정 (border) new Container( decoration: BoxDecoration( border: Border.all(), borderRadius: BorderRadius.all( Radius.circular( 4.0) //
[Flutter] 이미지 파일 (assets) 설정 ldpi 0.75x mdpi 1.0x hdpi 1.5x xhdpi 2.0x xxhdpi 3.0x xxxhdpi 4.0x image 폴더 설정 images/my_icon.png // Base: 1.0x image images/2.0x/my_icon.png // 2.0x image images/3.0x/my_icon.png // 3.0x image pubspec.yaml 파일에 추가 assets: - images/my_icon.png 소스에 사용 Image.asset("images/my_image.png");
[Flutter] String 내에 특정 값을 포함하고 있는지 알고 싶을 때 String 내에 특정 String을 포함하고 있는지 알고 싶을 때, String str = "hello,friends"; str.contains(",") // return true;
[Flutter] String to Int /double // String -> Int var one = int.parse('1'); // String -> double var one = double.parse('1'); // Int -> String String str = 1.toString(); // double -> String String str = 3.14159.toStringAsFixed(2); //3.14로 저장
[Flutter] TextField & TextFormField TextField & TextFormField는 값을 입력 받는 Widget. TextFormField 를 이용해 softkeyboard를 띄우지 않도록 설정 가능. new TextFormField(controller: converterInputTextController, //Text 받기 위한 controller textAlign: TextAlign.right, // Text 값 시작 위치 showCursor: true, // cursor visible readOnly: true, // softkeyboard disable decoration: new InputDecoration( border: InputBorder.none, // underline invisible ), ),

반응형