mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-27 19:48:37 +00:00
@@ -26,10 +26,16 @@ class HistoryPage extends StatefulWidget {
|
||||
|
||||
class _HistoryPageState extends State<HistoryPage>
|
||||
with AutomaticKeepAliveClientMixin, GridMixin {
|
||||
late final _historyController = Get.put(
|
||||
HistoryController(widget.type),
|
||||
tag: widget.type ?? 'all',
|
||||
);
|
||||
late final HistoryController _historyController;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_historyController = Get.put(
|
||||
HistoryController(widget.type),
|
||||
tag: widget.type ?? 'all',
|
||||
);
|
||||
}
|
||||
|
||||
HistoryController currCtr([int? index]) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user