mobile_skt/lib/screens/landing/landing_controller.dart

16 lines
405 B
Dart
Raw Normal View History

2024-03-19 11:09:07 +08:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:sk_base_mobile/services/app_info.service.dart';
class LandingController extends GetxController {
RxInt currentIndex = 0.obs;
RxBool showCreateBtn = true.obs;
2024-03-19 11:09:07 +08:00
List<Widget> pages = [];
@override
onInit() {
super.onInit();
pages = AppInfoService.to.bottomNavItems!.map((e) => e.page!).toList();
2024-03-19 11:09:07 +08:00
}
}