refactor: related

This commit is contained in:
bggRGjQaUbCoE
2024-09-08 16:58:21 +08:00
parent 15c5755392
commit 2bcddc1097
8 changed files with 94 additions and 130 deletions

View File

@@ -3,4 +3,9 @@ import 'package:flutter/material.dart';
abstract class PopupController extends CommonController {
List<OverlayEntry?> popupDialog = <OverlayEntry?>[];
void removePopupDialog() {
popupDialog.last?.remove();
popupDialog.removeLast();
}
}