본문 바로가기
프로그램 개발해서 돈벌기/flutter

flutter에서 OutlinedButton width 변경 방법

by ubmuhan 2023. 3. 23.
반응형

SizeBox 사용

SizedBox(
  width: 200, // set the width to 200
  child: OutlinedButton(
    onPressed: () {
      // add your onPressed logic here
    },
    child: Text('My Button'),
  ),
);

 

Container 사용

Container(
  width: 200, // set the width to 200
  child: OutlinedButton(
    onPressed: () {
      // add your onPressed logic here
    },
    child: Text('My Button'),
  ),
);

 

미국∙영국
[kənˈteɪnə(r)]
1. 그릇, 용기
2. (화물 수송용) 컨테이너
 
 
반응형

댓글