mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
12 lines
316 B
Dart
12 lines
316 B
Dart
import 'package:PiliPalaX/pages/common/common_controller.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
abstract class PopupController extends CommonController {
|
|
List<OverlayEntry?> popupDialog = <OverlayEntry?>[];
|
|
|
|
void removePopupDialog() {
|
|
popupDialog.last?.remove();
|
|
popupDialog.removeLast();
|
|
}
|
|
}
|