BASE: Update Icons & Name Of The App.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import '../models/dine_in_booking_model.dart';
|
||||
import '../service/fire_store_utils.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:get/get.dart' hide Trans;
|
||||
|
||||
class DineInBookingController extends GetxController {
|
||||
RxBool isLoading = true.obs;
|
||||
@@ -18,16 +18,12 @@ class DineInBookingController extends GetxController {
|
||||
}
|
||||
|
||||
Future<void> getDineInBooking() async {
|
||||
await FireStoreUtils.getDineInBooking(true).then(
|
||||
(value) {
|
||||
featureList.value = value;
|
||||
},
|
||||
);
|
||||
await FireStoreUtils.getDineInBooking(false).then(
|
||||
(value) {
|
||||
historyList.value = value;
|
||||
},
|
||||
);
|
||||
await FireStoreUtils.getDineInBooking(true).then((value) {
|
||||
featureList.value = value;
|
||||
});
|
||||
await FireStoreUtils.getDineInBooking(false).then((value) {
|
||||
historyList.value = value;
|
||||
});
|
||||
|
||||
isLoading.value = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user