1 - multi module in Auth select save selected module 2 - add flutter gen for assets builder
18 lines
263 B
Dart
18 lines
263 B
Dart
|
|
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
class RootLogic extends GetxController {
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|