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.
24 lines
361 B
Dart
24 lines
361 B
Dart
|
1 month ago
|
import 'package:get/get.dart';
|
||
|
|
|
||
|
|
class SplashScreenController extends GetxController {
|
||
|
|
//TODO: Implement SplashScreenController
|
||
|
|
|
||
|
|
final count = 0.obs;
|
||
|
|
@override
|
||
|
|
void onInit() {
|
||
|
|
super.onInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
@override
|
||
|
|
void onReady() {
|
||
|
|
super.onReady();
|
||
|
|
}
|
||
|
|
|
||
|
|
@override
|
||
|
|
void onClose() {
|
||
|
|
super.onClose();
|
||
|
|
}
|
||
|
|
|
||
|
|
void increment() => count.value++;
|
||
|
|
}
|