Remove flutter chat #26

Manually merged
Henry-Hiles merged 108 commits from remove-flutter-chat into main 2026-05-22 15:26:28 -04:00
Showing only changes of commit fd5eaa2725 - Show all commits

fix audio player size

Henry Hiles 2026-05-21 12:40:26 -04:00
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -61,7 +61,9 @@ class AudioPlayer extends HookConsumerWidget {
return "$minutes:$seconds"; return "$minutes:$seconds";
} }
return Card( return SizedBox(
height: 60,
child: Card(
color: Theme.of(context).colorScheme.surfaceContainer, color: Theme.of(context).colorScheme.surfaceContainer,
child: Padding( child: Padding(
padding: EdgeInsetsGeometry.only(left: 8, right: 16), padding: EdgeInsetsGeometry.only(left: 8, right: 16),
@ -96,6 +98,7 @@ class AudioPlayer extends HookConsumerWidget {
], ],
), ),
), ),
),
); );
} }
} }