Custom Card Shape Flutter SDK

前端 未结 4 1724
迷失自我
迷失自我 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

    You can also customize the card theme globally with ThemeData.cardTheme:

    MaterialApp(
      title: 'savvy',
      theme: ThemeData(
        cardTheme: CardTheme(
          shape: RoundedRectangleBorder(
            borderRadius: const BorderRadius.all(
              Radius.circular(8.0),
            ),
          ),
        ),
        // ...
    

提交回复
热议问题