This commit is contained in:
Hamza-Ayed
2024-07-08 00:27:01 +03:00
parent 0a71a194b9
commit a40c1e05e3
13 changed files with 367 additions and 75 deletions

View File

@@ -10,6 +10,7 @@ class DashboardController extends GetxController {
bool isLoading = false;
List dashbord = [];
int creditSMS = 0;
Future getDashBoard() async {
isLoading = true;
update();
@@ -31,8 +32,9 @@ class DashboardController extends GetxController {
}
@override
void onInit() {
void onInit() async {
getDashBoard();
super.onInit();
}
}