
Performs a comprehensive project rename from 'barcode_scanner' to 'e_scan' (or 'eScan' for user-facing labels). This update spans all relevant files, including: - Application IDs and bundle identifiers for Android, iOS, macOS, and Linux. - VS Code launch configurations. - Dart package import paths. - Project names and titles in `pubspec.yaml`, `README.md`, and platform-specific configurations (e.g., CMakeLists, Info.plist, AndroidManifest).
19 lines
550 B
Dart
19 lines
550 B
Dart
import 'package:e_scan/backend/objectbox/objectbox_manager.dart';
|
|
import 'package:e_scan/pages/login/login_page_model.dart';
|
|
import 'package:e_scan/provider_container.dart';
|
|
import 'package:e_scan/themes/app_theme.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
class InitializerService {
|
|
static Future init() async {
|
|
await ObjectboxManager.init();
|
|
await AppTheme.initialize();
|
|
await providerContainer
|
|
.read(loginPageModelProvider.notifier)
|
|
.checkHasUserConnected();
|
|
|
|
debugPrint('All services started...');
|
|
}
|
|
}
|