본문 바로가기

Flutter-플러터/플러터 공부

Flutter - FilledButton

반응형

Flutter 에서 기본으로 제공하는 버튼의 크기를 조절 하는 방법은 여러가지이다.

 

그 중에 엄~~청 간단한 방법이 있어 소개한다. 

 

먼저 Sizedbox나 Container를 만들고  child에  FilledButton 을 만든다. 

크기는 width, height로 맞춘다. 

끝.

  SizedBox(
            width: 150.w,
            height: 60.h,
            child: FilledButton(
              onPressed: () {},
              child: Text('저장'),
            ),
          )

 

 

 

 

반응형