Decrease audio toolbar padding
This commit is contained in:
parent
bb8b566fad
commit
ed1070dbe3
1 changed files with 3 additions and 3 deletions
|
|
@ -298,7 +298,7 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
final statusText = this.statusText ??= _durationString ?? '00:00';
|
||||
final audioPlayer = this.audioPlayer;
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
padding: const EdgeInsets.all(5.0),
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: <Widget>[
|
||||
|
|
@ -332,7 +332,7 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
const SizedBox(width: 5),
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
|
|
@ -368,7 +368,7 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
|
|||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
const SizedBox(width: 5),
|
||||
SizedBox(
|
||||
width: 36,
|
||||
child: Text(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue