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

153 lines
4.0 KiB
Dart
Raw Normal View History

import 'dart:io';
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';
import 'providers/providers.dart';
import 'providers/settings.dart';
import 'screens/screens.dart';
2019-02-05 13:57:05 +01:00
import 'screens/inbox.dart';
2018-04-18 14:38:28 +02:00
class Home extends StatefulWidget {
@override
createState() => _HomeState();
}
class _HomeState extends State<Home> {
int active = 0;
2019-01-31 15:07:52 +01:00
Widget _buildNotificationIcon(BuildContext context) {
int count = NotificationProvider.of(context).count;
if (count == 0) {
return Icon(Icons.notifications);
}
2019-02-06 14:35:52 +01:00
// String text = count > 99 ? '99+' : count.toString();
2019-01-31 15:07:52 +01:00
2019-02-06 14:35:52 +01:00
// https://stackoverflow.com/a/45434404
return new Stack(children: <Widget>[
new Icon(Icons.notifications),
new Positioned(
// draw a red marble
top: 0.0,
right: 0.0,
child: new Icon(Icons.brightness_1, size: 8.0, color: Colors.redAccent),
2019-01-31 15:07:52 +01:00
)
]);
}
List<BottomNavigationBarItem> _buildNavigationItems() {
return [
BottomNavigationBarItem(
icon: Icon(Icons.rss_feed),
title: Text('News'),
),
BottomNavigationBarItem(
2019-01-31 15:07:52 +01:00
icon: _buildNotificationIcon(context),
title: Text('Notification'),
),
2019-02-06 06:06:11 +01:00
BottomNavigationBarItem(
icon: Icon(Icons.search),
title: Text('Search'),
),
BottomNavigationBarItem(
icon: Icon(Icons.person),
title: Text('Me'),
),
];
}
_buildScreen(int index) {
switch (index) {
case 0:
2019-02-05 13:57:05 +01:00
return NewsScreen();
2019-02-06 06:06:11 +01:00
case 1:
return NotificationScreen();
2019-01-31 08:23:52 +01:00
case 2:
2019-02-05 13:57:05 +01:00
return SearchScreen();
case 3:
return ProfileScreen();
}
}
@override
Widget build(BuildContext context) {
switch (SettingsProvider.of(context).layout) {
case LayoutMap.cupertino:
return CupertinoApp(
home: CupertinoTheme(
data: CupertinoThemeData(
// brightness: Brightness.dark,
// barBackgroundColor: Color.fromRGBO(0x24, 0x29, 0x2e, 1),
2019-01-31 15:07:52 +01:00
// primaryColor: Color(0xff24292e),
),
child: CupertinoTabScaffold(
tabBar: CupertinoTabBar(items: _buildNavigationItems()),
tabBuilder: (context, index) {
return CupertinoTabView(builder: (context) {
return _buildScreen(index);
});
},
),
),
);
default:
return MaterialApp(
home: Scaffold(
// appBar: AppBar(title: Text('Home')),
body: _buildScreen(active),
bottomNavigationBar: BottomNavigationBar(
items: _buildNavigationItems(),
currentIndex: active,
type: BottomNavigationBarType.fixed,
onTap: (int index) {
setState(() {
active = index;
});
},
),
),
);
}
}
}
class App extends StatelessWidget {
final isIos = Platform.isIOS;
final SearchBloc searchBloc;
2019-01-31 15:07:52 +01:00
App(this.searchBloc);
@override
build(context) {
2019-01-23 12:52:51 +01:00
return SearchProvider(
bloc: searchBloc,
child: NotificationProvider(
child: SettingsProvider(
child: DefaultTextStyle(
2019-01-31 15:07:52 +01:00
// style: TextStyle(color: Color(0xff24292e)),
style: TextStyle(color: Colors.black),
child: Home(),
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() async {
2019-01-23 12:52:51 +01:00
SearchBloc searchBloc = SearchBloc();
// DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
// AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
// print('Running on ${androidInfo.model}'); // e.g. "Moto G (4)"
// IosDeviceInfo iosInfo = await deviceInfo.iosInfo;
// print('Running on ${iosInfo.utsname.machine}'); // e.g. "iPod7,1"
2019-01-31 15:07:52 +01:00
runApp(App(searchBloc));
}