Skip to content

Commit

Permalink
feat: adaptive controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Jun 12, 2023
1 parent 617aa89 commit c8b7de0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class RecommendationAttributeDials extends HookWidget {
children: [
Text(context.l10n.min, style: labelStyle),
Expanded(
child: Slider(
child: Slider.adaptive(
value: values.min / base,
min: 0,
max: 1,
Expand All @@ -58,7 +58,7 @@ class RecommendationAttributeDials extends HookWidget {
children: [
Text(context.l10n.target, style: labelStyle),
Expanded(
child: Slider(
child: Slider.adaptive(
value: values.target / base,
min: 0,
max: 1,
Expand All @@ -76,7 +76,7 @@ class RecommendationAttributeDials extends HookWidget {
children: [
Text(context.l10n.max, style: labelStyle),
Expanded(
child: Slider(
child: Slider.adaptive(
value: values.max / base,
min: 0,
max: 1,
Expand Down
2 changes: 1 addition & 1 deletion lib/components/player/player_controls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class PlayerControls extends HookConsumerWidget {
children: [
Tooltip(
message: context.l10n.slide_to_seek,
child: Slider(
child: Slider.adaptive(
// cannot divide by zero
// there's an edge case for value being bigger
// than total duration. Keeping it resolved
Expand Down
2 changes: 1 addition & 1 deletion lib/components/root/bottom_player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class BottomPlayer extends HookConsumerWidget {
}
}
},
child: Slider(
child: Slider.adaptive(
min: 0,
max: 1,
value: volume,
Expand Down
2 changes: 1 addition & 1 deletion lib/components/shared/track_table/tracks_table_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class TracksTableView extends HookConsumerWidget {
if (heading != null) heading!,
Row(
children: [
Checkbox(
Checkbox.adaptive(
value: selected.value.length == sortedTracks.length,
onChanged: (checked) {
if (!showCheck.value) showCheck.value = true;
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/library/playlist_generate/playlist_generate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
),
),
Expanded(
child: Slider(
child: Slider.adaptive(
value: value.toDouble(),
min: 10,
max: 100,
Expand Down

0 comments on commit c8b7de0

Please sign in to comment.