flutter showmodalbottomsheet background color
showModalBottomSheet(
backgroundColor: Colors.white, // bottomsheet color
barrierColor: Colors.black54, // barrier color
context: context,
builder: (context) {
return Wrap(
children: const [
ListTile(
leading: Icon(Icons.share),
title: Text('Share'),
),
ListTile(
leading: Icon(Icons.link),
title: Text('Get link'),
),
],
);
});