반응형 플러터47 [flutter] Fix screen rotation (vertical, horizontal) (화면 회전 고정 (세로 고정, 가로 고정)) 문제 상황 (a problem situation) 폰의 화면 회전 여부에 상관없이 세로 또는 가로로 화면을 고정하여 앱을 사용하고 싶습니다. (I want to use the app by fixing the screen vertically or horizontally regardless of whether the phone rotates.) 해결 방법 (how to solve) 필요 패키지 적용 import 'package:flutter/services.dart'; main.dart에 아래와 같이 코드 적용 void main(){ WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setPreferredOrientations( [DeviceOrientati.. 2021. 12. 30. [flutter] Gradle build daemon has been stopped: JVM garbage collector thrashing and after running out of JVM memory 문제 상황 flutter 프로젝트 빌드 중에 아래와 같은 에러메시지가 표시되고 빌드에 실패합니다. Gradle build daemon has been stopped: JVM garbage collector thrashing and after running out of JVM memory 해결 방법 ~~/gradle/gradle.properties 내용의 org.gradle.jvmargs 부분을 수정합니다. org.gradle.jvmargs=-Xmx4096M https://www.google.com/search?q=Gradle+build+daemon+has+been+stopped%3A+JVM+garbage+collector+thrashing+and+after+running+out+of+JVM+memory&.. 2021. 11. 26. [flutter] Shader compilation error 문제 상황 flutter 버전 업그레이드 이후부터 프로젝트 앱 빌드시 Shader compilation error를 포함한 에러가 여러번 호출되는 문제가 있었습니다. 해결 방법 flutter 버전을 다운그레이드 하는 방법 flutter run --enable-software-rendering 명령을 이용하여 다시 빌드하는 방법 안드로이드 에뮬레이터의 하드웨어 가속을 disable하는 방법 필자는 flutter run --enable-software-rendering 명령으로 문제를 해결했습니다. https://www.google.com/search?q=Shader+compilation+error&oq=Shader+compilation+error&aqs=chrome..69i57j0j0i30l2j0i5i30.. 2021. 11. 21. [flutter] How to hold the bottom of the widget (위젯의 하단 고정 방법) [flutter] How to hold the bottom of the widget [flutter] 위젯의 하단 고정 방법 문제 상황 (a problem situation) 위젯을 UI화면의 하단에 고정하고 싶습니다. (I want to fix the widget to the bottom of the UI screen.) body: Column( children: [ Body(), Container( height: 50, child: AdWidget( ad: _banner, ), ), ], ), 해결 방법 (Workaround) 하단에 고정하고자 하는 위젯 호출 전에 Spacer()를 호출합니다. (Call Spacer() before calling the widget you want to pin to.. 2021. 11. 20. 이전 1 ··· 6 7 8 9 10 11 12 다음 반응형