목록전체 글 (366)
seong

Flutter로 Android 앱 이름을 국제화 하는 방법 프로젝트 ios - Runner.xcworkspace폴더 open terminal 명령어로 입력 가능 현재 자신의 경로가 root프로젝트 일 경우 open ios/Runner.xcworkspace 왼쪽 Project의 Runner -> Localizations 클릭 Localizations에서 + 버튼 -> ko 선택 main 선택 후 finish 위 까지 완료되면 왼쪽 Runner -> Main 에 Main(Korean)이 생긴다. 오른쪽 아래 Localization -> Korean 체크 해제 -> Remove (main화면에 한국어 지원을 하지 않기 때문) Runner->"Localization"이라는 newGroup 생성 Localizat..

Flutter로 Android 앱 이름을 국제화 하는 방법프로젝트 -> android 폴더에서 AndroidManifest.xml파일 아래에서 label을 아래 처럼 수정"@string/app_name" //string폴더 아래의 app_name이라는 파일을 참조res -> values ->strings.xml 파일 생성 (s를 빼먹으면 안된다)작성위쪽에 Open editor이 보이게 되는데 클릭 ( 프로젝트 -> android를 열어야 보임! Flutter가 루트인 경로에서 열면 안보임! )지구본 + 모양 아이콘을 클릭하면 여러 언어들이 나온다, Ko를 먼저 클릭클릭 하게 되면 표 처럼 수정 할 수 있게 보이게 되는데 번역에 알맞게 수정 하면 된다.Default value(en) Shake Count ..
https://dev-yongsu.tistory.com/17
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.

https://pub.dev/packages/flutter_native_splash color : splash 화면 색 image : Splash 화면 중앙에 나타낼 이미지 branding : Splash 화면의 아랫쪽에 나타낼 이미지 - Flutter에서 따로 로고의 사이즈를 조절이 불가능(?)하기 때문에, Bottom에 공백을 주고 싶다면 Bottom에 공백이 있는 이미지를 받는게 마음 편하다, 아니면 Android 코드에서 Splash화면을 구현해야한다. branding_mode : bottom, bottom_left, bottom_right -> 중앙,왼쪽,오른쪽 위치 지정 android: Splash 표시 여부 ios : Ios Splash 표시 여부 android_gravity : Aos Im..

https://stackoverflow.com/questions/54489513/whats-the-difference-between-double-infinity-and-mediaquery Whats the difference between double.infinity and MediaQuery? To occupy the whole width or height , I use double.infinity, but going through some of the flutter samples, I have noticed many people use MediaQuery.of(context).size.width or height. I went throug... stackoverflow.com MediaQuery - ..