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

前端 未结 9 1131
时光取名叫无心
时光取名叫无心 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:41

        showModalBottomSheet(
         backgroundColor: Colors.transparent,
         context: context,
         builder: (ctx) {
          return Container( 
          decoration: BoxDecoration(
          color: Colors.green, // or some other color
          borderRadius: BorderRadius.only(
          topLeft: Radius.circular(10.0),
          topRight: Radius.circular(10.0)
           ) 
         );
        });
    

提交回复
热议问题