fix(player): playback element placement

This commit is contained in:
Kingkor Roy Tirtho 2023-04-10 21:14:47 +06:00
parent cb916d4861
commit 5e47faa606

View File

@ -93,6 +93,7 @@ class PlayerView extends HookConsumerWidget {
(palette.darkMutedColor ?? palette.lightMutedColor)?.color ??
theme.colorScheme.secondaryContainer,
],
child: SingleChildScrollView(
child: Container(
alignment: Alignment.center,
width: double.infinity,
@ -103,9 +104,11 @@ class PlayerView extends HookConsumerWidget {
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
Container(
constraints:
const BoxConstraints(maxHeight: 300, maxWidth: 300),
Padding(
padding: const EdgeInsets.all(8.0),
child: Container(
constraints: const BoxConstraints(
maxHeight: 300, maxWidth: 300),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
boxShadow: const [
@ -126,7 +129,8 @@ class PlayerView extends HookConsumerWidget {
),
),
),
const SizedBox(height: 10),
),
const SizedBox(height: 60),
Container(
padding: const EdgeInsets.symmetric(horizontal: 16),
alignment: Alignment.centerLeft,
@ -136,9 +140,10 @@ class PlayerView extends HookConsumerWidget {
AutoSizeText(
currentTrack?.name ?? "Not playing",
style: TextStyle(
fontSize: 20,
color: titleTextColor,
fontSize: 22,
),
maxFontSize: 22,
maxLines: 1,
textAlign: TextAlign.start,
),
@ -155,7 +160,8 @@ class PlayerView extends HookConsumerWidget {
else
TypeConversionUtils.artists_X_ClickableArtists(
currentTrack?.artists ?? [],
textStyle: theme.textTheme.bodyMedium!.copyWith(
textStyle:
theme.textTheme.bodyMedium!.copyWith(
fontWeight: FontWeight.bold,
color: bodyTextColor,
),
@ -167,9 +173,9 @@ class PlayerView extends HookConsumerWidget {
],
),
),
const SizedBox(height: 40),
const SizedBox(height: 10),
PlayerControls(palette: palette),
const Spacer(),
const SizedBox(height: 25),
PlayerActions(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
floatingQueue: false,
@ -204,6 +210,7 @@ class PlayerView extends HookConsumerWidget {
)
],
),
const SizedBox(height: 25)
],
),
),
@ -212,6 +219,7 @@ class PlayerView extends HookConsumerWidget {
),
),
),
),
);
}
}