Merge pull request #506 from pangeachat/fix-audio-overflow
Fix audio overflow
This commit is contained in:
commit
219777f7d7
1 changed files with 12 additions and 3 deletions
|
|
@ -298,7 +298,10 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
final statusText = this.statusText ??= _durationString ?? '00:00';
|
||||
final audioPlayer = this.audioPlayer;
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
// #Pangea
|
||||
// padding: const EdgeInsets.all(12.0),
|
||||
padding: const EdgeInsets.all(5.0),
|
||||
// Pangea#
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: <Widget>[
|
||||
|
|
@ -332,7 +335,10 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
// #Pangea
|
||||
// const SizedBox(width: 8),
|
||||
const SizedBox(width: 5),
|
||||
// Pangea#
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
|
|
@ -368,7 +374,10 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
// #Pangea
|
||||
// const SizedBox(width: 8),
|
||||
const SizedBox(width: 5),
|
||||
// Pangea#
|
||||
SizedBox(
|
||||
width: 36,
|
||||
child: Text(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue