아카이브/Flutter

[위젯] Chip, 아바타 아이콘

월담하는꼼티 2021. 5. 26. 14:00

Chip 위젯


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.all(Radius.circular(defaultSize))),
      	avatar: CircleAvatar( // 둥근 아이콘 태두리
            radius: defaultSize,
            backgroundColor: Colors.white70,
            child: Icon(
            Icons.warning,
            color: Colors.red[300],
            size: defaultSize * .9,
      	),
    ),
    label: Text(
        "위험",
        style: TextStyle(
            color: Colors.blueGrey[900],
            fontSize: defaultSize * .9,
            fontWeight: FontWeight.normal,
        ),
    ),
),