mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
fix: remove adaptive widgets (#520)
This commit is contained in:
parent
c3176f6b47
commit
e4cbdd3747
@ -40,7 +40,7 @@ class RecommendationAttributeDials extends HookWidget {
|
||||
children: [
|
||||
Text(context.l10n.min, style: labelStyle),
|
||||
Expanded(
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
value: values.min / base,
|
||||
min: 0,
|
||||
max: 1,
|
||||
@ -58,7 +58,7 @@ class RecommendationAttributeDials extends HookWidget {
|
||||
children: [
|
||||
Text(context.l10n.target, style: labelStyle),
|
||||
Expanded(
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
value: values.target / base,
|
||||
min: 0,
|
||||
max: 1,
|
||||
@ -76,7 +76,7 @@ class RecommendationAttributeDials extends HookWidget {
|
||||
children: [
|
||||
Text(context.l10n.max, style: labelStyle),
|
||||
Expanded(
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
value: values.max / base,
|
||||
min: 0,
|
||||
max: 1,
|
||||
|
@ -128,7 +128,7 @@ class PlayerActions extends HookConsumerWidget {
|
||||
const SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator.adaptive(
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
),
|
||||
)
|
||||
|
@ -141,7 +141,7 @@ class PlayerControls extends HookConsumerWidget {
|
||||
children: [
|
||||
Tooltip(
|
||||
message: context.l10n.slide_to_seek,
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
// cannot divide by zero
|
||||
// there's an edge case for value being bigger
|
||||
// than total duration. Keeping it resolved
|
||||
|
@ -29,7 +29,7 @@ class VolumeSlider extends HookConsumerWidget {
|
||||
}
|
||||
}
|
||||
},
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
min: 0,
|
||||
max: 1,
|
||||
value: volume,
|
||||
|
@ -92,7 +92,7 @@ class TrackTile extends HookConsumerWidget {
|
||||
else if (constrains.smAndDown)
|
||||
const SizedBox(width: 16),
|
||||
if (onChanged != null)
|
||||
Checkbox.adaptive(
|
||||
Checkbox(
|
||||
value: selected,
|
||||
onChanged: onChanged,
|
||||
),
|
||||
|
@ -115,7 +115,7 @@ class TracksTableView extends HookConsumerWidget {
|
||||
);
|
||||
},
|
||||
child: showCheck.value
|
||||
? Checkbox.adaptive(
|
||||
? Checkbox(
|
||||
value: selected.value.length == sortedTracks.length,
|
||||
onChanged: (checked) {
|
||||
if (!showCheck.value) showCheck.value = true;
|
||||
|
@ -285,7 +285,7 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Slider.adaptive(
|
||||
child: Slider(
|
||||
value: value.toDouble(),
|
||||
min: 10,
|
||||
max: 100,
|
||||
|
Loading…
Reference in New Issue
Block a user