CircleAvatar 원형을 생성하는 위젯
backgroundColor 배경색상
backgroundImage 위젯의 배경이미지 (NetworkImage, AssetImage, FileImage)
radius 반지름 기본값은 20.0
CircleAvatar(
backgroundColor: Colors.grey,
backgroundImage: AssetImage('assets/profile.png'),
radius: 40.0,
)
child 위젯안에 배치할 위젯 (텍스트, 아이콘..)
CircleAvatar(
backgroundColor: Colors.blue,
child: Text(
'AB',
style: TextStyle(color: Colors.white),
),
radius: 30.0,
)
foregroundColor child 위젯의 색상
CircleAvatar(
backgroundColor: Colors.blue, // 배경 색상
radius: 50.0,
foregroundColor: Colors.white, // 텍스트 색상
child: Text(
'AB',
style: TextStyle(fontSize: 24.0),
),
CircleAvatar(
backgroundColor: Colors.blue, // 배경 색상
radius: 50.0,
foregroundColor: Colors.white, // 아이콘 색상
child: Icon(
Icons.star,
size: 40.0,
),
'Flutter' 카테고리의 다른 글
Flutter의 Widget: 위젯트리와 루트위젯, 구성위젯과 컨테이너 위젯 상태 Stateful 위젯과 비상태 Stateless 위젯 (0) | 2024.08.12 |
---|---|
Flutter dart 수평/수직 구분선 - Divider VerticalDivider (0) | 2024.08.06 |
Flutter dart 정렬하기 - MainAxisAlignment CrossAxisAlignment (0) | 2024.08.06 |
Flutter dart 패딩 적용하기 - Padding EdgeInsets (0) | 2024.08.06 |
Flutter Course for Absolute Beginners: Ticket app 만들어보기 - 1(feat.Flutter설치) (0) | 2024.07.03 |