fluffychat/lib/pages/settings_style/settings_style_view.dart

193 lines
7.3 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 18:50:34 +02:00
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
import '../../config/app_config.dart';
2021-05-22 08:53:52 +02:00
import '../../widgets/matrix.dart';
2021-11-09 21:32:16 +01:00
import 'settings_style.dart';
2021-05-22 09:13:47 +02:00
class SettingsStyleView extends StatelessWidget {
2021-04-18 09:18:23 +02:00
final SettingsStyleController controller;
const SettingsStyleView(this.controller, {Key? key}) : super(key: key);
2021-01-15 19:41:55 +01:00
@override
Widget build(BuildContext context) {
const colorPickerSize = 32.0;
2022-01-29 12:35:03 +01:00
final wallpaper = Matrix.of(context).wallpaper;
return Scaffold(
appBar: AppBar(
2021-10-14 18:09:30 +02:00
leading: const BackButton(),
title: Text(L10n.of(context)!.changeTheme),
),
2022-05-18 08:54:50 +02:00
backgroundColor: Theme.of(context).colorScheme.surface,
2021-04-09 18:26:44 +02:00
body: MaxWidthBody(
withScrolling: true,
child: Column(
children: [
2022-05-18 08:54:50 +02:00
SizedBox(
height: colorPickerSize + 24,
child: ListView(
shrinkWrap: true,
scrollDirection: Axis.horizontal,
children: SettingsStyleController.customColors
.map(
(color) => Padding(
padding: const EdgeInsets.all(12.0),
child: InkWell(
borderRadius: BorderRadius.circular(colorPickerSize),
2022-05-18 08:54:50 +02:00
onTap: () => controller.setChatColor(color),
child: color == null
? Material(
elevation:
AppConfig.colorSchemeSeed?.value == null
? 100
: 0,
shadowColor: AppConfig.colorSchemeSeed,
borderRadius:
BorderRadius.circular(colorPickerSize),
child: Image.asset(
'assets/colors.png',
width: colorPickerSize,
height: colorPickerSize,
),
)
: Material(
color: color,
elevation: 6,
borderRadius:
BorderRadius.circular(colorPickerSize),
child: SizedBox(
width: colorPickerSize,
height: colorPickerSize,
2022-12-24 11:48:48 +01:00
child: controller.currentColor == color
2022-05-18 08:54:50 +02:00
? const Center(
child: Icon(
Icons.check,
size: 16,
color: Colors.white,
))
: null),
),
),
),
2022-05-18 08:54:50 +02:00
)
.toList(),
),
),
const Divider(height: 1),
2022-12-24 11:48:48 +01:00
RadioListTile<ThemeMode>(
2021-04-18 09:18:23 +02:00
groupValue: controller.currentTheme,
2022-12-24 11:48:48 +01:00
value: ThemeMode.system,
title: Text(L10n.of(context)!.systemTheme),
2021-04-18 09:18:23 +02:00
onChanged: controller.switchTheme,
),
2022-12-24 11:48:48 +01:00
RadioListTile<ThemeMode>(
2021-04-18 09:18:23 +02:00
groupValue: controller.currentTheme,
2022-12-24 11:48:48 +01:00
value: ThemeMode.light,
title: Text(L10n.of(context)!.lightTheme),
2021-04-18 09:18:23 +02:00
onChanged: controller.switchTheme,
),
2022-12-24 11:48:48 +01:00
RadioListTile<ThemeMode>(
2021-04-18 09:18:23 +02:00
groupValue: controller.currentTheme,
2022-12-24 11:48:48 +01:00
value: ThemeMode.dark,
title: Text(L10n.of(context)!.darkTheme),
2021-04-18 09:18:23 +02:00
onChanged: controller.switchTheme,
2021-04-09 18:26:44 +02:00
),
2021-10-14 18:09:30 +02:00
const Divider(height: 1),
2021-04-09 18:26:44 +02:00
ListTile(
title: Text(
L10n.of(context)!.wallpaper,
2021-04-09 18:26:44 +02:00
style: TextStyle(
2021-05-24 10:59:00 +02:00
color: Theme.of(context).colorScheme.secondary,
2021-04-09 18:26:44 +02:00
fontWeight: FontWeight.bold,
),
2021-02-07 08:59:58 +01:00
),
),
2022-01-29 12:35:03 +01:00
if (wallpaper != null)
2021-04-09 18:26:44 +02:00
ListTile(
title: Image.file(
2022-01-29 12:35:03 +01:00
wallpaper,
2021-04-09 18:26:44 +02:00
height: 38,
fit: BoxFit.cover,
),
2021-10-14 18:09:30 +02:00
trailing: const Icon(
2021-11-14 13:24:01 +01:00
Icons.delete_outlined,
2021-04-09 18:26:44 +02:00
color: Colors.red,
),
2021-04-18 09:18:23 +02:00
onTap: controller.deleteWallpaperAction,
2021-02-07 08:59:58 +01:00
),
2021-04-09 18:26:44 +02:00
Builder(builder: (context) {
return ListTile(
title: Text(L10n.of(context)!.changeWallpaper),
2021-11-14 13:24:01 +01:00
trailing: Icon(
Icons.photo_outlined,
2023-01-26 09:47:30 +01:00
color: Theme.of(context).textTheme.bodyLarge?.color,
2021-11-14 13:24:01 +01:00
),
2021-04-18 09:18:23 +02:00
onTap: controller.setWallpaperAction,
2021-04-09 18:26:44 +02:00
);
}),
2021-10-14 18:09:30 +02:00
const Divider(height: 1),
2021-04-09 18:26:44 +02:00
ListTile(
title: Text(
L10n.of(context)!.messages,
2021-02-07 08:59:58 +01:00
style: TextStyle(
2021-05-24 10:59:00 +02:00
color: Theme.of(context).colorScheme.secondary,
2021-04-09 18:26:44 +02:00
fontWeight: FontWeight.bold,
),
),
),
Container(
alignment: Alignment.centerLeft,
padding: const EdgeInsets.symmetric(horizontal: 12),
2021-11-13 13:06:36 +01:00
child: Material(
2022-05-18 08:54:50 +02:00
color: Theme.of(context).colorScheme.primary,
2021-11-13 13:06:36 +01:00
elevation: 6,
shadowColor:
Theme.of(context).secondaryHeaderColor.withAlpha(100),
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
child: Padding(
padding: EdgeInsets.all(16 * AppConfig.bubbleSizeFactor),
2021-11-13 13:06:36 +01:00
child: Text(
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor',
style: TextStyle(
2022-05-18 08:54:50 +02:00
color: Theme.of(context).colorScheme.onPrimary,
2021-11-13 13:06:36 +01:00
fontSize:
AppConfig.messageFontSize * AppConfig.fontSizeFactor,
),
2021-04-09 18:26:44 +02:00
),
2021-02-07 08:59:58 +01:00
),
),
),
ListTile(
title: Text(L10n.of(context)!.fontSize),
trailing: Text('× ${AppConfig.fontSizeFactor}'),
),
Slider.adaptive(
2021-04-09 18:26:44 +02:00
min: 0.5,
max: 2.5,
divisions: 20,
2021-04-09 18:26:44 +02:00
value: AppConfig.fontSizeFactor,
semanticFormatterCallback: (d) => d.toString(),
2021-04-18 09:18:23 +02:00
onChanged: controller.changeFontSizeFactor,
2021-04-09 18:26:44 +02:00
),
ListTile(
title: Text(L10n.of(context)!.bubbleSize),
trailing: Text('× ${AppConfig.bubbleSizeFactor}'),
),
Slider.adaptive(
min: 0.5,
max: 1.5,
divisions: 4,
value: AppConfig.bubbleSizeFactor,
semanticFormatterCallback: (d) => d.toString(),
onChanged: controller.changeBubbleSizeFactor,
),
2021-04-09 18:26:44 +02:00
],
),
),
);
}
}