mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55: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(
|
||||
child: ExpansionTile(
|
||||
title: DefaultTextStyle(
|
||||
style: Theme.of(context).textTheme.titleMedium!,
|
||||
style: Theme.of(context).textTheme.titleSmall!,
|
||||
child: title,
|
||||
),
|
||||
shape: const Border(),
|
||||
|
@ -93,7 +93,7 @@ class RecommendationAttributeFields extends HookWidget {
|
||||
return Card(
|
||||
child: ExpansionTile(
|
||||
title: DefaultTextStyle(
|
||||
style: Theme.of(context).textTheme.titleMedium!,
|
||||
style: Theme.of(context).textTheme.titleSmall!,
|
||||
child: title,
|
||||
),
|
||||
shape: const Border(),
|
||||
|
@ -248,7 +248,11 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
|
||||
title: Text(context.l10n.generate_playlist),
|
||||
centerTitle: true,
|
||||
),
|
||||
body: SafeArea(
|
||||
body: SliderTheme(
|
||||
data: const SliderThemeData(
|
||||
overlayShape: RoundSliderOverlayShape(),
|
||||
),
|
||||
child: SafeArea(
|
||||
child: LayoutBuilder(builder: (context, constrains) {
|
||||
return ListView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
@ -494,6 +498,7 @@ class PlaylistGeneratorPage extends HookConsumerWidget {
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user