in example/lib/pages/live/live_page.dart [281:318]
void _showGiftOptions() {
showModalBottomSheet(
context: context,
builder: (context) {
return SafeArea(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: const Icon(Icons.star, color: Colors.yellow),
title: const Text("送星星"),
onTap: () {
Navigator.pop(context); // 关闭菜单
_sendGift("星星");
},
),
ListTile(
leading: const Icon(Icons.favorite, color: Colors.red),
title: const Text("送爱心"),
onTap: () {
Navigator.pop(context); // 关闭菜单
_sendGift("爱心");
},
),
ListTile(
leading: const Icon(Icons.diamond, color: Colors.purple),
title: const Text("送钻石"),
onTap: () {
Navigator.pop(context); // 关闭菜单
_sendGift("钻石");
},
),
],
),
);
},
);
}