first commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:smm_mobile/generated/smm_core.pbgrpc.dart';
|
||||
|
||||
import 'src/app.dart';
|
||||
import 'client.dart';
|
||||
import 'user_service.dart';
|
||||
import 'src/settings/settings_controller.dart';
|
||||
import 'src/settings/settings_service.dart';
|
||||
|
||||
void main() async {
|
||||
final client = SmmCoreTerminalClient();
|
||||
|
||||
final userService = UserService(client);
|
||||
|
||||
// Set up the SettingsController, which will glue user settings to multiple
|
||||
// Flutter Widgets.
|
||||
final settingsController = SettingsController(SettingsService());
|
||||
|
||||
// Load the user's preferred theme while the splash screen is displayed.
|
||||
// This prevents a sudden theme change when the app is first displayed.
|
||||
await settingsController.loadSettings();
|
||||
|
||||
// Run the app and pass in the SettingsController. The app listens to the
|
||||
// SettingsController for changes, then passes it further down to the
|
||||
// SettingsView.
|
||||
runApp(
|
||||
MyApp(
|
||||
settingsController: settingsController,
|
||||
client: client,
|
||||
userService: userService,
|
||||
),
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user