How to create a modal bottomsheet with circular corners in Flutter?

前端 未结 9 1140
时光取名叫无心
时光取名叫无心 2020-12-05 02:25

showModalBottomSheet does not provide any styling or decorations. I want to create something like the Google Tasks bottomsheet.

9条回答
  •  旧巷少年郎
    2020-12-05 02:31

    showModalBottomSheet(
    shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.vertical(
              top: Radius.circular(20),
            ),
          ),
          clipBehavior: Clip.antiAliasWithSaveLayer,
    )
    

提交回复
热议问题