git-touch-android-ios-app/lib/main.dart

48 lines
1.3 KiB
Dart
Raw Normal View History

2018-04-18 14:38:28 +02:00
import 'package:flutter/material.dart';
2019-01-22 16:39:44 +01:00
import 'package:flutter/cupertino.dart';
2019-01-29 06:34:52 +01:00
import 'package:git_flux/providers/providers.dart';
2019-01-25 13:35:20 +01:00
import 'package:git_flux/ios/main.dart';
2019-01-29 06:34:52 +01:00
import 'package:git_flux/screens/screens.dart';
2018-04-18 14:38:28 +02:00
class App extends StatelessWidget {
final isIos = true;
final EventBloc eventBloc;
final NotificationBloc notificationBloc;
2019-01-23 12:52:51 +01:00
final SearchBloc searchBloc;
2019-01-23 12:52:51 +01:00
App(this.eventBloc, this.notificationBloc, this.searchBloc);
@override
build(context) {
2019-01-23 12:52:51 +01:00
return SearchProvider(
bloc: searchBloc,
child: NotificationProvider(
bloc: notificationBloc,
child: EventProvider(
bloc: eventBloc,
child: MaterialApp(
home: DefaultTextStyle(
style: TextStyle(color: Color(0xff24292e)),
2019-01-23 12:52:51 +01:00
child: IosHomePage(title: 'GitFlux'),
2019-01-29 06:34:52 +01:00
// child: IssueScreen(11609, 'flutter', 'flutter'),
2019-01-23 12:52:51 +01:00
),
2019-01-25 13:35:20 +01:00
// theme: ThemeData(
// textTheme: TextTheme(
// title: TextStyle(color: Colors.red),
// ),
// ),
),
),
2019-01-22 16:39:44 +01:00
),
);
}
}
void main() {
EventBloc eventBloc = EventBloc();
NotificationBloc notificationBloc = NotificationBloc();
2019-01-23 12:52:51 +01:00
SearchBloc searchBloc = SearchBloc();
2019-01-23 12:52:51 +01:00
runApp(App(eventBloc, notificationBloc, searchBloc));
}