import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:git_touch/models/auth.dart'; import 'package:git_touch/models/code.dart'; import 'package:git_touch/models/theme.dart'; import 'package:git_touch/scaffolds/single.dart'; import 'package:git_touch/utils/utils.dart'; import 'package:git_touch/widgets/action_button.dart'; import 'package:git_touch/widgets/app_bar_title.dart'; import 'package:git_touch/widgets/table_view.dart'; import 'package:launch_review/launch_review.dart'; import 'package:package_info/package_info.dart'; import 'package:provider/provider.dart'; import 'package:tuple/tuple.dart'; class SettingsScreen extends StatelessWidget { Widget _buildRightWidget(BuildContext context, bool checked) { final theme = Provider.of(context); if (!checked) return null; return Icon(Icons.check, color: theme.palette.primary, size: 24); } @override Widget build(BuildContext context) { final theme = Provider.of(context); final auth = Provider.of(context); final code = Provider.of(context); return SingleScaffold( title: AppBarTitle('Settings'), body: Column( children: [ CommonStyle.verticalGap, TableView(headerText: 'system', items: [ if (auth.activeAccount.platform == PlatformType.github) ...[ TableViewItem( text: Text('GitHub status'), url: 'https://www.githubstatus.com/', ), TableViewItem( text: Text('Review Permissions'), url: 'https://github.com/settings/connections/applications/$clientId', rightWidget: Text(auth.activeAccount.login), ), ], if (auth.activeAccount.platform == PlatformType.gitlab) TableViewItem( text: Text('GitLab status'), url: '${auth.activeAccount.domain}/help', rightWidget: FutureBuilder( future: auth.fetchGitlab('/version').then((v) => v['version']), builder: (context, snapshot) { return Text(snapshot.data ?? ''); }, ), ), if (auth.activeAccount.platform == PlatformType.gitea) TableViewItem( leftIconData: Octicons.info, text: Text('Gitea status'), url: '/gitea/status', rightWidget: FutureBuilder( future: auth.fetchGitea('/version').then((v) => v['version']), builder: (context, snapshot) { return Text(snapshot.data ?? ''); }, ), ), TableViewItem( text: Text('Switch accounts'), url: '/login', rightWidget: Text(auth.activeAccount.login), ), ]), CommonStyle.verticalGap, TableView(headerText: 'theme', items: [ TableViewItem( text: Text('Brightness'), rightWidget: Text(theme.brighnessValue == AppBrightnessType.light ? 'Light' : theme.brighnessValue == AppBrightnessType.dark ? 'Dark' : 'Follow system'), onTap: () { theme.showActions(context, [ for (var t in [ Tuple2('Follow System', AppBrightnessType.followSystem), Tuple2('Light', AppBrightnessType.light), Tuple2('Dark', AppBrightnessType.dark), ]) ActionItem( text: t.item1, onTap: (_) { if (theme.brighnessValue != t.item2) theme.setBrightness(t.item2); }, ) ]); }, ), TableViewItem( text: Text('Scaffold Theme'), rightWidget: Text(theme.theme == AppThemeType.cupertino ? 'Cupertino' : 'Material'), onTap: () { theme.showActions(context, [ for (var t in [ Tuple2('Material', AppThemeType.material), Tuple2('Cupertino', AppThemeType.cupertino), ]) ActionItem( text: t.item1, onTap: (_) { if (theme.theme != t.item2) { theme.setTheme(t.item2); } }, ) ]); }, ), TableViewItem( text: Text('Code Theme'), url: '/choose-code-theme', rightWidget: Text('${code.fontFamily}, ${code.fontSize}pt'), ), ]), CommonStyle.verticalGap, TableView(headerText: 'feedback', items: [ TableViewItem( text: Text('Submit an issue'), rightWidget: Text('pd4d10/git-touch'), url: (auth.activeAccount.platform == PlatformType.github ? '' : 'https://github.com') + '/github/pd4d10/git-touch/issues/new', ), TableViewItem( text: Text('Rate This App'), onTap: () { LaunchReview.launch( androidAppId: 'io.github.pd4d10.gittouch', iOSAppId: '1452042346', ); }, ), TableViewItem( text: Text('Email'), rightWidget: Text('pd4d10@gmail.com'), hideRightChevron: true, url: 'mailto:pd4d10@gmail.com', ), ]), CommonStyle.verticalGap, TableView(headerText: 'about', items: [ TableViewItem( text: Text('Version'), rightWidget: FutureBuilder( future: PackageInfo.fromPlatform().then((info) => info.version), builder: (context, snapshot) { return Text(snapshot.data ?? ''); }, )), TableViewItem( text: Text('Source Code'), rightWidget: Text('pd4d10/git-touch'), url: (auth.activeAccount.platform == PlatformType.github ? '/github' : 'https://github.com') + '/pd4d10/git-touch', ), ]) ], ), ); } }