This commit is contained in:
2022-10-19 10:54:45 +08:00
commit 153e28aa4e
115 changed files with 4215 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:get/get.dart';
class TabbarService extends GetxService {
static TabbarService get to => Get.find<TabbarService>();
final RxInt _index = 0.obs;
set index(int value) => _index.value = value;
int get index => _index.value;
}