Custom Card Shape Flutter SDK

前端 未结 4 1791
迷失自我
迷失自我 2021-01-30 12:10

I just started learning Flutter and I have developed an app with GridView. GridView items are Card. Default card shape is Rectangle with a radius of 4.

I know there is s

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-30 12:44

    When Card I always use RoundedRectangleBorder.

    Card(
      color: Colors.grey[900],
      shape: RoundedRectangleBorder(
        side: BorderSide(color: Colors.white70, width: 1),
        borderRadius: BorderRadius.circular(10),
      ),
      margin: EdgeInsets.all(20.0),
      child: Container(
        child: Column(
            children: [
            ListTile(
                title: Text(
                'example',
                style: TextStyle(fontSize: 18, color: Colors.white),
                ),
            ),
            ],
        ),
      ),
    ),
    

提交回复
热议问题