2020-07-26 12:20:42 +02:00
|
|
|
import 'package:feature_discovery/feature_discovery.dart';
|
2020-03-01 13:17:06 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
2020-03-14 04:14:24 +01:00
|
|
|
import 'package:line_icons/line_icons.dart';
|
|
|
|
|
2020-06-07 14:47:28 +02:00
|
|
|
import '../home/home.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import '../intro_slider/app_intro.dart';
|
2020-07-07 17:29:21 +02:00
|
|
|
import '../podcasts/podcast_manage.dart';
|
2020-10-09 17:59:29 +02:00
|
|
|
import '../util/custom_widget.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import '../util/extension_helper.dart';
|
2020-08-15 19:31:07 +02:00
|
|
|
import '../util/general_dialog.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import 'data_backup.dart';
|
2020-03-19 20:58:30 +01:00
|
|
|
import 'history.dart';
|
2020-07-07 17:29:21 +02:00
|
|
|
import 'languages.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import 'layouts.dart';
|
|
|
|
import 'libries.dart';
|
2020-04-22 20:10:57 +02:00
|
|
|
import 'play_setting.dart';
|
2020-07-26 12:20:42 +02:00
|
|
|
import 'storage.dart';
|
|
|
|
import 'syncing.dart';
|
|
|
|
import 'theme.dart';
|
2020-03-01 13:17:06 +01:00
|
|
|
|
2020-04-25 15:50:27 +02:00
|
|
|
class Settings extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_SettingsState createState() => _SettingsState();
|
|
|
|
}
|
|
|
|
|
2020-08-15 19:31:07 +02:00
|
|
|
class _SettingsState extends State<Settings> {
|
|
|
|
Widget _feedbackItem(IconData icon, String name, String url) => ListTile(
|
|
|
|
onTap: () {
|
|
|
|
url.launchUrl;
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
leading: Icon(
|
|
|
|
icon,
|
|
|
|
size: 20,
|
|
|
|
),
|
|
|
|
title: Text(
|
|
|
|
name,
|
|
|
|
maxLines: 2,
|
2020-04-25 15:50:27 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2020-03-01 13:17:06 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-07-02 14:58:55 +02:00
|
|
|
final s = context.s;
|
2020-03-01 13:17:06 +01:00
|
|
|
return AnnotatedRegion<SystemUiOverlayStyle>(
|
|
|
|
value: SystemUiOverlayStyle(
|
|
|
|
statusBarIconBrightness: Theme.of(context).accentColorBrightness,
|
|
|
|
systemNavigationBarColor: Theme.of(context).primaryColor,
|
2020-03-19 20:58:30 +01:00
|
|
|
systemNavigationBarIconBrightness:
|
|
|
|
Theme.of(context).accentColorBrightness,
|
2020-03-01 13:17:06 +01:00
|
|
|
),
|
2020-03-19 20:58:30 +01:00
|
|
|
child: Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-07-15 21:42:52 +02:00
|
|
|
title: Text(s.settings),
|
2020-10-09 17:59:29 +02:00
|
|
|
leading: CustomBackButton(),
|
2020-03-19 20:58:30 +01:00
|
|
|
elevation: 0,
|
2020-03-31 18:36:20 +02:00
|
|
|
backgroundColor: context.primaryColor,
|
2020-03-19 20:58:30 +01:00
|
|
|
),
|
|
|
|
body: SafeArea(
|
2020-03-21 17:14:10 +01:00
|
|
|
child: SingleChildScrollView(
|
2020-03-14 04:14:24 +01:00
|
|
|
scrollDirection: Axis.vertical,
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
2020-09-23 16:19:07 +02:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
2020-03-14 04:14:24 +01:00
|
|
|
children: <Widget>[
|
2020-08-28 23:05:37 +02:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.all(10.0),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
height: 30.0,
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 70),
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
child: Text(s.settingsPrefrence,
|
2020-09-23 16:19:07 +02:00
|
|
|
style: context.textTheme.bodyText1
|
2020-08-28 23:05:37 +02:00
|
|
|
.copyWith(color: context.accentColor)),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => ThemeSetting())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading:
|
|
|
|
Icon(LineIcons.adjust_solid, color: context.accentColor),
|
|
|
|
title: Text(s.settingsAppearance),
|
|
|
|
subtitle: Text(s.settingsAppearanceDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => LayoutSetting())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.stop_circle_solid,
|
|
|
|
color: Colors.blueAccent),
|
|
|
|
title: Text(s.settingsLayout),
|
|
|
|
subtitle: Text(s.settingsLayoutDes),
|
2020-03-14 04:14:24 +01:00
|
|
|
),
|
2020-08-28 23:05:37 +02:00
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => PlaySetting())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.play_circle, color: Colors.redAccent),
|
|
|
|
title: Text(s.play),
|
|
|
|
subtitle: Text(s.settingsPlayDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => SyncingSetting())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.cloud_download_alt_solid,
|
|
|
|
color: Colors.yellow[700]),
|
|
|
|
title: Text(s.settingsSyncing),
|
|
|
|
subtitle: Text(s.settingsSyncingDes)),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => StorageSetting())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.save, color: Colors.green[700]),
|
|
|
|
title: Text(s.settingStorage),
|
|
|
|
subtitle: Text(s.settingsStorageDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => PlayedHistory())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(Icons.update, color: Colors.indigo[700]),
|
|
|
|
title: Text(s.settingsHistory),
|
|
|
|
subtitle: Text(s.settingsHistoryDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => generalSheet(context,
|
|
|
|
title: s.settingsLanguages, child: LanguagesSetting())
|
|
|
|
.then((value) => setState(() {})),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.language_solid,
|
|
|
|
color: Colors.purpleAccent),
|
|
|
|
title: Text(s.settingsLanguages),
|
|
|
|
subtitle: Text(s.settingsLanguagesDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () {
|
|
|
|
//_exportOmpl(context);
|
|
|
|
Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => DataBackup()));
|
|
|
|
},
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.file_code_solid,
|
|
|
|
color: Colors.lightGreen[700]),
|
|
|
|
title: Text(s.settingsBackup),
|
|
|
|
subtitle: Text(s.settingsBackupDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
2020-03-14 04:14:24 +01:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.all(10.0),
|
|
|
|
),
|
2020-08-28 23:05:37 +02:00
|
|
|
Container(
|
|
|
|
height: 30.0,
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 70),
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
child: Text(s.settingsInfo,
|
|
|
|
style: Theme.of(context)
|
|
|
|
.textTheme
|
|
|
|
.bodyText1
|
|
|
|
.copyWith(color: Theme.of(context).accentColor)),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(context,
|
|
|
|
MaterialPageRoute(builder: (context) => Libries())),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.book_open_solid,
|
|
|
|
color: Colors.purple[700]),
|
|
|
|
title: Text(s.settingsLibraries),
|
|
|
|
subtitle: Text(s.settingsLibrariesDes),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => generalSheet(
|
|
|
|
context,
|
|
|
|
title: s.settingsFeedback,
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
_feedbackItem(LineIcons.github, s.feedbackGithub,
|
|
|
|
'https://github.com/stonega/tsacdop/issues'),
|
2020-08-15 19:31:07 +02:00
|
|
|
Divider(height: 1),
|
2020-08-28 23:05:37 +02:00
|
|
|
_feedbackItem(LineIcons.telegram, s.feedbackTelegram,
|
|
|
|
'https://t.me/joinchat/Bk3LkRpTHy40QYC78PK7Qg'),
|
2020-08-15 19:31:07 +02:00
|
|
|
Divider(height: 1),
|
2020-08-28 23:05:37 +02:00
|
|
|
_feedbackItem(
|
|
|
|
LineIcons.envelope_open_text_solid,
|
|
|
|
s.feedbackEmail,
|
|
|
|
'mailto:<tsacdop.app@gmail.com>?subject=Tsacdop Feedback'),
|
|
|
|
Divider(height: 1),
|
|
|
|
_feedbackItem(LineIcons.google_play, s.feedbackPlay,
|
|
|
|
'https://play.google.com/store/apps/details?id=com.stonegate.tsacdop'),
|
2020-08-15 19:31:07 +02:00
|
|
|
Divider(height: 1),
|
2020-03-14 04:14:24 +01:00
|
|
|
],
|
|
|
|
),
|
2020-08-28 23:05:37 +02:00
|
|
|
),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading: Icon(LineIcons.bug_solid, color: Colors.pink[700]),
|
|
|
|
title: Text(s.settingsFeedback),
|
|
|
|
subtitle: Text(s.settingsFeedbackDes),
|
|
|
|
),
|
|
|
|
Divider(
|
|
|
|
height: 2,
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
onTap: () {
|
|
|
|
FeatureDiscovery.clearPreferences(context, const <String>{
|
|
|
|
addFeature,
|
|
|
|
menuFeature,
|
|
|
|
playlistFeature,
|
|
|
|
groupsFeature,
|
|
|
|
addGroupFeature,
|
|
|
|
configureGroup,
|
|
|
|
configurePodcast,
|
|
|
|
podcastFeature
|
|
|
|
});
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: s.toastDiscovery,
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading:
|
|
|
|
Icon(LineIcons.capsules_solid, color: Colors.pinkAccent),
|
|
|
|
title: Text(s.settingsDiscovery),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
ListTile(
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) =>
|
|
|
|
SlideIntro(goto: Goto.settings))),
|
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 25.0),
|
|
|
|
leading:
|
|
|
|
Icon(LineIcons.columns_solid, color: Colors.blueGrey),
|
|
|
|
title: Text(s.settingsAppIntro),
|
|
|
|
),
|
|
|
|
Divider(height: 1),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.all(10.0),
|
2020-03-14 04:14:24 +01:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-03-01 13:17:06 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|