71 lines
2.2 KiB
Dart
71 lines
2.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SliderListTile extends StatelessWidget {
|
|
final String title;
|
|
final double value;
|
|
final ValueChanged<double>? onChanged;
|
|
final double min;
|
|
final double max;
|
|
final int? divisions;
|
|
final EdgeInsetsGeometry titlePadding;
|
|
final Widget Function(BuildContext context, double value)? titleTrailing;
|
|
|
|
const SliderListTile({
|
|
super.key,
|
|
required this.title,
|
|
required this.value,
|
|
required this.onChanged,
|
|
this.min = 0.0,
|
|
this.max = 1.0,
|
|
this.divisions,
|
|
this.titlePadding = const EdgeInsetsDirectional.only(start: 16),
|
|
this.titleTrailing,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final listTileTitleTextStyle = ListTileTheme.of(context).titleTextStyle ?? theme.textTheme.bodyLarge!.copyWith(color: theme.colorScheme.onSurface);
|
|
return SliderTheme(
|
|
data: SliderTheme.of(context).copyWith(
|
|
overlayShape: const RoundSliderOverlayShape(
|
|
// align `Slider`s on `Switch`es by matching their overlay/reaction radius
|
|
// `kRadialReactionRadius` is used when `SwitchThemeData.splashRadius` is undefined
|
|
overlayRadius: kRadialReactionRadius,
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(top: 16, bottom: 8),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: titlePadding,
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
title,
|
|
style: listTileTitleTextStyle,
|
|
),
|
|
const Spacer(),
|
|
if (titleTrailing != null) titleTrailing!(context, value),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
// match `SwitchListTile.contentPadding`
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
child: Slider(
|
|
value: value,
|
|
onChanged: onChanged,
|
|
min: min,
|
|
max: max,
|
|
divisions: divisions,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|