본문 바로가기
Development Solutions/Flutter & Dart

[flutter] How to hold the bottom of the widget (위젯의 하단 고정 방법)

by studio ODOC 2021. 11. 20.
반응형

[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 the bottom.)

 

body: Column(
  children: [
    Body(),
    Spacer(),
    Container(
      height: 50,
      child: AdWidget(
        ad: _banner,
      ),
    ),
  ],
),
반응형