You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
485 B
Dart
26 lines
485 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:isekai_wiki/models/user.dart';
|
|
|
|
class LifeCycleController extends SuperController {
|
|
@override
|
|
void onDetached() {}
|
|
|
|
@override
|
|
void onInactive() {}
|
|
|
|
@override
|
|
void onPaused() {
|
|
debugPrint("onPause");
|
|
}
|
|
|
|
@override
|
|
void onResumed() {
|
|
debugPrint("onResume");
|
|
var uc = Get.find<UserController>();
|
|
|
|
uc.attemptFinishAuth();
|
|
}
|
|
}
|