This commit is contained in:
Mohamed Nouffer
2022-07-20 20:55:54 +05:30
parent 5283b5052e
commit 25410a7ebd
8 changed files with 85 additions and 23 deletions

View File

@ -0,0 +1,9 @@
import 'package:get/get.dart';
import 'package:rogapp/pages/search/search_controller.dart';
class SearchBinding extends Bindings {
@override
void dependencies() {
Get.put<SearchController>(SearchController());
}
}