Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-22 21:13:16 +08:00
parent 55bed2e830
commit e770e39c8f
59 changed files with 1388 additions and 1265 deletions

View File

@@ -36,10 +36,11 @@ class _WhisperSecPageState extends State<WhisperSecPage> {
title: Text(widget.name),
actions: [
Obx(() {
if (_controller.threeDotItems.value?.isNotEmpty == true) {
final threeDotItems = _controller.threeDotItems.value;
if (threeDotItems?.isNotEmpty == true) {
return PopupMenuButton(
itemBuilder: (context) {
return _controller.threeDotItems.value!
return threeDotItems!
.map((e) => PopupMenuItem(
onTap: () => e.type.action(
context: context,