42 lines
1.7 KiB
Dart
42 lines
1.7 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
// **************************************************************************
|
|
// StackedLocatorGenerator
|
|
// **************************************************************************
|
|
|
|
// ignore_for_file: public_member_api_docs, implementation_imports, depend_on_referenced_packages
|
|
|
|
import 'package:stacked_services/src/bottom_sheet/bottom_sheet_service.dart';
|
|
import 'package:stacked_services/src/dialog/dialog_service.dart';
|
|
import 'package:stacked_services/src/navigation/navigation_service.dart';
|
|
import 'package:stacked_services/src/snackbar/snackbar_service.dart';
|
|
import 'package:stacked_shared/stacked_shared.dart';
|
|
|
|
import '../services/http_services.dart';
|
|
import '../services/my_easyloading.dart';
|
|
import '../services/my_socket_io_client.dart';
|
|
import '../services/other_function.dart';
|
|
import '../services/shared_prefs.dart';
|
|
|
|
final locator = StackedLocator.instance;
|
|
|
|
Future<void> setupLocator({
|
|
String? environment,
|
|
EnvironmentFilter? environmentFilter,
|
|
}) async {
|
|
// Register environments
|
|
locator.registerEnvironment(
|
|
environment: environment, environmentFilter: environmentFilter);
|
|
|
|
// Register dependencies
|
|
locator.registerLazySingleton(() => NavigationService());
|
|
locator.registerLazySingleton(() => DialogService());
|
|
locator.registerLazySingleton(() => SnackbarService());
|
|
locator.registerLazySingleton(() => BottomSheetService());
|
|
locator.registerLazySingleton(() => MyEasyLoading());
|
|
locator.registerLazySingleton(() => MyHttpServices());
|
|
locator.registerLazySingleton(() => OtherFunction());
|
|
locator.registerLazySingleton(() => MySocketIoClient());
|
|
locator.registerLazySingleton(() => MySharedPrefs());
|
|
}
|