79 lines
2.8 KiB
Dart
79 lines
2.8 KiB
Dart
import 'package:aves/model/settings/settings.dart';
|
|
import 'package:aves/theme/durations.dart';
|
|
import 'package:aves/theme/icons.dart';
|
|
import 'package:aves/utils/color_utils.dart';
|
|
import 'package:aves/widgets/common/extensions/build_context.dart';
|
|
import 'package:aves/widgets/common/identity/aves_expansion_tile.dart';
|
|
import 'package:aves/widgets/settings/common/tile_leading.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class ThumbnailsSection extends StatelessWidget {
|
|
final ValueNotifier<String?> expandedNotifier;
|
|
|
|
const ThumbnailsSection({
|
|
Key? key,
|
|
required this.expandedNotifier,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final currentShowThumbnailLocation = context.select<Settings, bool>((s) => s.showThumbnailLocation);
|
|
final currentShowThumbnailRaw = context.select<Settings, bool>((s) => s.showThumbnailRaw);
|
|
final currentShowThumbnailVideoDuration = context.select<Settings, bool>((s) => s.showThumbnailVideoDuration);
|
|
|
|
final iconSize = IconTheme.of(context).size! * MediaQuery.textScaleFactorOf(context);
|
|
double opacityFor(bool enabled) => enabled ? 1 : .2;
|
|
|
|
return AvesExpansionTile(
|
|
leading: SettingsTileLeading(
|
|
icon: AIcons.grid,
|
|
color: stringToColor('Thumbnails'),
|
|
),
|
|
title: context.l10n.settingsSectionThumbnails,
|
|
expandedNotifier: expandedNotifier,
|
|
showHighlight: false,
|
|
children: [
|
|
SwitchListTile(
|
|
value: currentShowThumbnailLocation,
|
|
onChanged: (v) => settings.showThumbnailLocation = v,
|
|
title: Row(
|
|
children: [
|
|
Expanded(child: Text(context.l10n.settingsThumbnailShowLocationIcon)),
|
|
AnimatedOpacity(
|
|
opacity: opacityFor(currentShowThumbnailLocation),
|
|
duration: Durations.toggleableTransitionAnimation,
|
|
child: Icon(
|
|
AIcons.location,
|
|
size: iconSize,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
SwitchListTile(
|
|
value: currentShowThumbnailRaw,
|
|
onChanged: (v) => settings.showThumbnailRaw = v,
|
|
title: Row(
|
|
children: [
|
|
Expanded(child: Text(context.l10n.settingsThumbnailShowRawIcon)),
|
|
AnimatedOpacity(
|
|
opacity: opacityFor(currentShowThumbnailRaw),
|
|
duration: Durations.toggleableTransitionAnimation,
|
|
child: Icon(
|
|
AIcons.raw,
|
|
size: iconSize,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
SwitchListTile(
|
|
value: currentShowThumbnailVideoDuration,
|
|
onChanged: (v) => settings.showThumbnailVideoDuration = v,
|
|
title: Text(context.l10n.settingsThumbnailShowVideoDuration),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|