in example/lib/pages/live/live_page.dart [175:198]
void _showMoreOptions() {
showModalBottomSheet(
context: context,
builder: (context) {
return SafeArea(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: const Icon(Icons.share),
title: const Text("分享直播间"),
onTap: () => Navigator.pop(context), // 关闭菜单
),
ListTile(
leading: const Icon(Icons.report),
title: const Text("举报"),
onTap: () => Navigator.pop(context), // 关闭菜单
),
],
),
);
},
);
}