Flutter Circle Design

后端 未结 5 2042
旧巷少年郎
旧巷少年郎 2021-01-31 02:20

I want to make this kind of design with these white circles as a raised button.

5条回答
  •  情歌与酒
    2021-01-31 02:56

    you can use decoration like this :

       Container(
                        width: 60,
                        height: 60,
                        child: Icon(CustomIcons.option, size: 20,),
                        decoration: BoxDecoration(
                            shape: BoxShape.circle,
                            color: Color(0xFFe0f2f1)),
                      )
    

    Now you have circle shape and Icon on it.

提交回复
热议问题