728x90
OutlinedButton(
onPressed: () {},
child: Text(
"강의소개",
),
),
OutlinedButton 을 사용하면 기본적으로 가지고 있는 패딩 값이 적용 되어 이런 버튼이 생성됩니다.
이 패딩값을 제거하기 위해서는 OutlinedButton 에 style를 코드처럼 주어야 합니다.
OutlinedButton(
onPressed: () {},
child: Text(
"강의소개",
),
style: OutlinedButton.styleFrom(
minimumSize: Size.zero,
),
),
하지만 아직도 좌우 패딩값이 들어가 있습니다.
minimunSize를 제로로 설정했다면 이제 padding 을 원하는대로 설정해주시면됩니다.
OutlinedButton(
onPressed: () {},
child: Text(
"강의소개",
),
style: OutlinedButton.styleFrom(
minimumSize: Size.zero,
padding: EdgeInsets.only(
top: 5,
right: 10,
),
),
),
'Flutter > 기본' 카테고리의 다른 글
[Flutter] dark테마로 앱만들기 (0) | 2023.01.22 |
---|---|
[Flutter] Text Height 주는 방법 (0) | 2023.01.15 |
Flutter) TextFormField 숫자만 입력받기. (1) | 2022.09.29 |
Flutter) Container에 BoxDecoration 사용하기 (0) | 2022.08.10 |
Flutter) RichText 위젯 (0) | 2022.08.09 |