67 lines
2.1 KiB
Dart
67 lines
2.1 KiB
Dart
import 'package:flutter_driver/driver_extension.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:redux/redux.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_reducer.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/auth/auth_middleware.dart';
|
|
import 'package:invoiceninja_flutter/redux/dashboard/dashboard_middleware.dart';
|
|
import 'package:invoiceninja_flutter/redux/product/product_middleware.dart';
|
|
import 'package:invoiceninja_flutter/utils/localization.dart';
|
|
//import 'package:redux_logging/redux_logging.dart';
|
|
|
|
void main() {
|
|
enableFlutterDriverExtension();
|
|
|
|
final store = Store<AppState>(appReducer,
|
|
initialState: AppState(),
|
|
middleware: []
|
|
..addAll(createStoreAuthMiddleware())
|
|
..addAll(createStoreDashboardMiddleware())
|
|
..addAll(createStoreProductsMiddleware())
|
|
..addAll([
|
|
//LoggingMiddleware.printer(),
|
|
]));
|
|
|
|
runApp(new InvoiceNinjaApp(store: store));
|
|
}
|
|
|
|
class InvoiceNinjaApp extends StatefulWidget {
|
|
const InvoiceNinjaApp({Key key, this.store}) : super(key: key);
|
|
|
|
final Store<AppState> store;
|
|
|
|
@override
|
|
_InvoiceNinjaAppState createState() => new _InvoiceNinjaAppState();
|
|
}
|
|
|
|
class _InvoiceNinjaAppState extends State<InvoiceNinjaApp> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new StoreProvider<AppState>(
|
|
store: widget.store,
|
|
child: new MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
localizationsDelegates: [
|
|
const AppLocalizationsDelegate(),
|
|
GlobalMaterialLocalizations.delegate,
|
|
],
|
|
theme: ThemeData().copyWith(
|
|
primaryColor: const Color(0xFF117cc1),
|
|
primaryColorDark: const Color(0xFF005090),
|
|
primaryColorLight: const Color(0xFF5dabf4),
|
|
),
|
|
/*
|
|
theme: ThemeData(
|
|
brightness: Brightness.dark,
|
|
accentColor: Colors.lightBlueAccent,
|
|
),
|
|
*/
|
|
title: 'Invoice Ninja',
|
|
routes: {},
|
|
),
|
|
);
|
|
}
|
|
}
|