16 lines
359 B
Dart
16 lines
359 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:school_asignment_app/common/job/user_info.dart';
|
|
|
|
class HomeState {
|
|
HomeState() {
|
|
///Initialize variables
|
|
}
|
|
|
|
late Rx<UserInfo?> userInfo;
|
|
int active = 1;
|
|
late RxList workList = RxList();
|
|
late RxInt tabIndex = 0.obs;
|
|
late bool completedToRefresh = true;
|
|
}
|