Chip, 알약 모양 위젯
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Chip(
padding: EdgeInsets.symmetric(
horizontal: defaultSize * .2,
vertical: defaultSize * .2,
),
elevation: 6.0,
shadowColor: Colors.purpleAccent[100],
backgroundColor: Colors.purple[100],
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(defaultSize),
bottomLeft: Radius.circular(defaultSize),
),
),
label: Icon(
Icons.warning,
color: Colors.red[300],
size: defaultSize * .95,
),
),
Chip(
padding: EdgeInsets.symmetric(
horizontal: defaultSize * .2,
vertical: defaultSize * .2,
),
elevation: 6.0,
shadowColor: Colors.purpleAccent[100],
backgroundColor: Colors.white60,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topRight: Radius.circular(defaultSize),
bottomRight: Radius.circular(defaultSize),
),
),
label: Text(
"위험",
style: TextStyle(
color: Colors.blueGrey[900],
fontSize: defaultSize * .9,
fontWeight: FontWeight.normal,
),
),
),
],
),