목적
- ElevatedButton 의 Radius를 변경하기
코드
- ElevatedButton의 styleFrom을 활용해 shape속성으로 변경
Container(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 0,
backgroundColor: Colors.white,
padding: EdgeInsets.fromLTRB(15, 20, 15, 20),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(15))
),
onPressed: (){},
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text('내 계좌', style: TextStyle(fontSize: 18, color: Colors.black, fontWeight: FontWeight.w600),),
Row(
children: [
Text('전체보기', style: TextStyle(fontSize: 18, color: Colors.blue, fontWeight: FontWeight.w600),),
Icon(Icons.arrow_right, color: Colors.blue, size: 35,)
],
),
],
)
),
),
'Flutter' 카테고리의 다른 글
[Flutter, 토이 프로젝트] 위젯 사이의 간격 간편하게 주고 싶을 때 - SizedBox (0) | 2023.08.22 |
---|---|
[Flutter, 토이 프로젝트] CustomScrollView 안의 패딩 위젯 - SliverPadding (0) | 2023.08.21 |
[Flutter, 토이 프로젝트] 가로,세로 요소 스크롤 & 스와이프 - ListView (0) | 2023.08.19 |
[Flutter, 토이 프로젝트] 아이콘 좌우 반전 - Matrix4 (0) | 2023.08.19 |
[Flutter, 토이 프로젝트] BottomNavigationBar (0) | 2023.08.18 |