15 lines
373 B
Dart
15 lines
373 B
Dart
import 'package:flutter_jdt_store/pages/layout/home/index.dart';
|
|
import 'package:flutter_jdt_store/pages/layout/user/index.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import 'tab_logic.dart';
|
|
|
|
class TabBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut(() => TabLogic());
|
|
Get.lazyPut(() => HomeLogic());
|
|
Get.lazyPut(() => UserLogic());
|
|
}
|
|
}
|