growerp_activity 1.11.0
growerp_activity: ^1.11.0 copied to clipboard
Activity, task and event management for the GrowERP project.
/*
* This GrowERP software is in the public domain under CC0 1.0 Universal plus a
* Grant of Patent License.
*
* To the extent possible under law, the author(s) have dedicated all
* copyright and related and neighboring rights to this software to the
* public domain worldwide. This software is distributed without any
* warranty.
*
* You should have received a copy of the CC0 Public Domain Dedication
* along with this software (see the LICENSE.md file). If not, see
* <http://creativecommons.org/publicdomain/zero/1.0/>.
*/
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:global_configuration/global_configuration.dart';
import 'package:growerp_core/growerp_core.dart';
import 'package:growerp_models/growerp_models.dart';
import 'package:package_info_plus/package_info_plus.dart';
import 'router_builder.dart';
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
await GlobalConfiguration().loadFromAsset('app_settings');
PackageInfo packageInfo = await PackageInfo.fromPlatform();
GlobalConfiguration().updateValue('appName', packageInfo.appName);
GlobalConfiguration().updateValue('packageName', packageInfo.packageName);
GlobalConfiguration().updateValue('version', packageInfo.version);
GlobalConfiguration().updateValue('build', packageInfo.buildNumber);
RestClient restClient = RestClient(await buildDioClient());
String applicationId = GlobalConfiguration().get("applicationId");
Bloc.observer = AppBlocObserver();
runApp(
TopApp(
restClient: restClient,
applicationId: applicationId,
chatClient: WsClient('chat'),
notificationClient: WsClient('notws'),
title: 'GrowERP Activity Example',
router: createActivityExampleRouter(),
extraDelegates: extraDelegates,
extraBlocProviders: getExampleBlocProviders(restClient, applicationId),
),
);
}