mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-17 19:26:35 -07:00
fix: Small visual bug
This commit is contained in:
parent
a6d9bf803f
commit
936f929bde
2 changed files with 44 additions and 50 deletions
|
|
@ -43,9 +43,7 @@ class _AddToCollectionState extends ConsumerState<AddToCollection> {
|
|||
Widget build(BuildContext context) {
|
||||
final collectonOptions = ref.watch(provider);
|
||||
return ActionContent(
|
||||
title: Container(
|
||||
color: Theme.of(context).colorScheme.surface,
|
||||
child: Column(
|
||||
title: Column(
|
||||
children: [
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
|
|
@ -69,7 +67,6 @@ class _AddToCollectionState extends ConsumerState<AddToCollection> {
|
|||
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
||||
],
|
||||
),
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
|
|
|
|||
|
|
@ -38,9 +38,7 @@ class _AddToPlaylistState extends ConsumerState<AddToPlaylist> {
|
|||
Widget build(BuildContext context) {
|
||||
final collectonOptions = ref.watch(provider);
|
||||
return ActionContent(
|
||||
title: Container(
|
||||
color: Theme.of(context).colorScheme.surface,
|
||||
child: Column(
|
||||
title: Column(
|
||||
children: [
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
|
|
@ -64,7 +62,6 @@ class _AddToPlaylistState extends ConsumerState<AddToPlaylist> {
|
|||
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
||||
],
|
||||
),
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue