mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
fix: playlist generate slider shape
This commit is contained in:
parent
ce38233de8
commit
2b35c044ad
@ -94,7 +94,7 @@ class RecommendationAttributeDials extends HookWidget {
|
|||||||
return Card(
|
return Card(
|
||||||
child: ExpansionTile(
|
child: ExpansionTile(
|
||||||
title: DefaultTextStyle(
|
title: DefaultTextStyle(
|
||||||
style: Theme.of(context).textTheme.titleMedium!,
|
style: Theme.of(context).textTheme.titleSmall!,
|
||||||
child: title,
|
child: title,
|
||||||
),
|
),
|
||||||
shape: const Border(),
|
shape: const Border(),
|
||||||
|
@ -93,7 +93,7 @@ class RecommendationAttributeFields extends HookWidget {
|
|||||||
return Card(
|
return Card(
|
||||||
child: ExpansionTile(
|
child: ExpansionTile(
|
||||||
title: DefaultTextStyle(
|
title: DefaultTextStyle(
|
||||||
style: Theme.of(context).textTheme.titleMedium!,
|
style: Theme.of(context).textTheme.titleSmall!,
|
||||||
child: title,
|
child: title,
|
||||||
),
|
),
|
||||||
shape: const Border(),
|
shape: const Border(),
|
||||||
|
@ -248,7 +248,11 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
|
|||||||
title: Text(context.l10n.generate_playlist),
|
title: Text(context.l10n.generate_playlist),
|
||||||
centerTitle: true,
|
centerTitle: true,
|
||||||
),
|
),
|
||||||
body: SafeArea(
|
body: SliderTheme(
|
||||||
|
data: const SliderThemeData(
|
||||||
|
overlayShape: RoundSliderOverlayShape(),
|
||||||
|
),
|
||||||
|
child: SafeArea(
|
||||||
child: LayoutBuilder(builder: (context, constrains) {
|
child: LayoutBuilder(builder: (context, constrains) {
|
||||||
return ListView(
|
return ListView(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
@ -494,6 +498,7 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
|
|||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user