mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
fix: small alignment issue media banner buttons (#97)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
parent
ab3d7ef85a
commit
f72ae9e3ca
1 changed files with 10 additions and 5 deletions
|
|
@ -27,11 +27,16 @@ class BannerPlayButton extends ConsumerWidget {
|
|||
child: Stack(
|
||||
children: [
|
||||
Positioned.fill(
|
||||
child: SquareProgressIndicator(
|
||||
value: item.userData.progress / 100,
|
||||
borderRadius: 12,
|
||||
strokeCap: StrokeCap.round,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
child: Transform.scale(
|
||||
scale: 1.01,
|
||||
child: SquareProgressIndicator(
|
||||
value: item.userData.progress / 100,
|
||||
borderRadius: 12,
|
||||
strokeWidth: 12,
|
||||
strokeAlign: SquareStrokeAlign.center,
|
||||
strokeCap: StrokeCap.round,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
),
|
||||
),
|
||||
IconButton(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue