188 lines
9.5 KiB
Dart
188 lines
9.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:flutter_colorpicker/flutter_colorpicker.dart';
|
|
import 'package:tsacdop/class/settingstate.dart';
|
|
import 'package:tsacdop/util/context_extension.dart';
|
|
|
|
class ThemeSetting extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var settings = Provider.of<SettingState>(context, listen: false);
|
|
return AnnotatedRegion<SystemUiOverlayStyle>(
|
|
value: SystemUiOverlayStyle(
|
|
statusBarIconBrightness: Theme.of(context).accentColorBrightness,
|
|
systemNavigationBarColor: Theme.of(context).primaryColor,
|
|
systemNavigationBarIconBrightness:
|
|
Theme.of(context).accentColorBrightness,
|
|
),
|
|
child: Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Appearance'),
|
|
elevation: 0,
|
|
backgroundColor: Theme.of(context).primaryColor,
|
|
),
|
|
body: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
Padding(
|
|
padding: EdgeInsets.all(10.0),
|
|
),
|
|
Container(
|
|
height: 30.0,
|
|
padding: EdgeInsets.symmetric(horizontal: 80),
|
|
alignment: Alignment.centerLeft,
|
|
child: Text('Interface',
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.bodyText1
|
|
.copyWith(color: Theme.of(context).accentColor)),
|
|
),
|
|
ListView(
|
|
physics: const BouncingScrollPhysics(),
|
|
shrinkWrap: true,
|
|
scrollDirection: Axis.vertical,
|
|
children: <Widget>[
|
|
ListTile(
|
|
onTap: () => showGeneralDialog(
|
|
context: context,
|
|
barrierDismissible: true,
|
|
barrierLabel: MaterialLocalizations.of(context)
|
|
.modalBarrierDismissLabel,
|
|
barrierColor: Colors.black54,
|
|
transitionDuration: const Duration(milliseconds: 200),
|
|
pageBuilder: (BuildContext context,
|
|
Animation animaiton,
|
|
Animation secondaryAnimation) =>
|
|
AnnotatedRegion<SystemUiOverlayStyle>(
|
|
value: SystemUiOverlayStyle(
|
|
statusBarIconBrightness: Brightness.light,
|
|
systemNavigationBarColor:
|
|
Theme.of(context).brightness ==
|
|
Brightness.light
|
|
? Color.fromRGBO(113, 113, 113, 1)
|
|
: Color.fromRGBO(15, 15, 15, 1),
|
|
// statusBarColor:
|
|
// Theme.of(context).brightness ==
|
|
// Brightness.light
|
|
// ? Color.fromRGBO(113, 113, 113, 1)
|
|
// : Color.fromRGBO(5, 5, 5, 1),
|
|
),
|
|
child: AlertDialog(
|
|
titlePadding: EdgeInsets.only(
|
|
top: 20,
|
|
left: 40,
|
|
right: 200,
|
|
),
|
|
elevation: 1,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(10.0))),
|
|
title: Text('Theme'),
|
|
content: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: <Widget>[
|
|
RadioListTile(
|
|
title: Container(
|
|
padding:
|
|
EdgeInsets.only(right: 80),
|
|
child: Text('System default')),
|
|
value: ThemeMode.system,
|
|
groupValue: settings.theme,
|
|
onChanged: (value) {
|
|
settings.setTheme = value;
|
|
Navigator.of(context).pop();
|
|
}),
|
|
RadioListTile(
|
|
title: Text('Dark mode'),
|
|
value: ThemeMode.dark,
|
|
groupValue: settings.theme,
|
|
onChanged: (value) {
|
|
settings.setTheme = value;
|
|
Navigator.of(context).pop();
|
|
}),
|
|
RadioListTile(
|
|
title: Text('Light mode'),
|
|
value: ThemeMode.light,
|
|
groupValue: settings.theme,
|
|
onChanged: (value) {
|
|
settings.setTheme = value;
|
|
Navigator.of(context).pop();
|
|
}),
|
|
],
|
|
),
|
|
),
|
|
)),
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 80.0),
|
|
// leading: Icon(Icons.colorize),
|
|
title: Text('Theme'),
|
|
subtitle: Text('System default'),
|
|
),
|
|
Divider(height: 2),
|
|
ListTile(
|
|
onTap: () => showGeneralDialog(
|
|
context: context,
|
|
barrierDismissible: true,
|
|
barrierLabel: MaterialLocalizations.of(context)
|
|
.modalBarrierDismissLabel,
|
|
barrierColor: Colors.black54,
|
|
transitionDuration: const Duration(milliseconds: 200),
|
|
pageBuilder: (BuildContext context,
|
|
Animation animaiton,
|
|
Animation secondaryAnimation) =>
|
|
AnnotatedRegion<SystemUiOverlayStyle>(
|
|
value: SystemUiOverlayStyle(
|
|
statusBarIconBrightness: Brightness.light,
|
|
systemNavigationBarColor:
|
|
Theme.of(context).brightness ==
|
|
Brightness.light
|
|
? Color.fromRGBO(113, 113, 113, 1)
|
|
: Color.fromRGBO(15, 15, 15, 1),
|
|
// statusBarColor:
|
|
// Theme.of(context).brightness ==
|
|
// Brightness.light
|
|
// ? Color.fromRGBO(113, 113, 113, 1)
|
|
// : Color.fromRGBO(5, 5, 5, 1),
|
|
),
|
|
child: AlertDialog(
|
|
elevation: 1,
|
|
titlePadding: EdgeInsets.only(
|
|
top: 20,
|
|
left: 40,
|
|
right: 200,
|
|
bottom: 0),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(10.0))),
|
|
title: Text('Choose a color'),
|
|
content: SingleChildScrollView(
|
|
child: MaterialPicker(
|
|
onColorChanged: (value) {
|
|
settings.setAccentColor = value;
|
|
},
|
|
pickerColor: context.accentColor,
|
|
),
|
|
),
|
|
))),
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 80.0),
|
|
title: Text('Accent color'),
|
|
subtitle: Text('Include the overlay color'),
|
|
),
|
|
Divider(height: 2),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|