mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-14 01:37:07 -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) {
|
Widget build(BuildContext context) {
|
||||||
final collectonOptions = ref.watch(provider);
|
final collectonOptions = ref.watch(provider);
|
||||||
return ActionContent(
|
return ActionContent(
|
||||||
title: Container(
|
title: Column(
|
||||||
color: Theme.of(context).colorScheme.surface,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
|
@ -69,7 +67,6 @@ class _AddToCollectionState extends ConsumerState<AddToCollection> {
|
||||||
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,7 @@ class _AddToPlaylistState extends ConsumerState<AddToPlaylist> {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final collectonOptions = ref.watch(provider);
|
final collectonOptions = ref.watch(provider);
|
||||||
return ActionContent(
|
return ActionContent(
|
||||||
title: Container(
|
title: Column(
|
||||||
color: Theme.of(context).colorScheme.surface,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
|
@ -64,7 +62,6 @@ class _AddToPlaylistState extends ConsumerState<AddToPlaylist> {
|
||||||
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
if (widget.items.length == 1) ItemBottomSheetPreview(item: widget.items.first),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue