반응형 고정2 [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] 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 다음 반응형