Minor change.

This commit is contained in:
Stonegate 2021-02-10 00:39:03 +08:00
parent 67166178f4
commit 7bbcb78fe0
1 changed files with 2 additions and 2 deletions

View File

@ -539,7 +539,7 @@ class __MenuBarState extends State<_MenuBar> {
selector: (_, audio) => Tuple2(audio.episode, audio.playerRunning), selector: (_, audio) => Tuple2(audio.episode, audio.playerRunning),
builder: (_, data, __) { builder: (_, data, __) {
return (widget.episodeItem == data.item1 && data.item2) return (widget.episodeItem == data.item1 && data.item2)
? Container( ? Padding(
padding: EdgeInsets.only(right: 30), padding: EdgeInsets.only(right: 30),
child: SizedBox( child: SizedBox(
width: 20, width: 20,
@ -557,7 +557,7 @@ class __MenuBarState extends State<_MenuBar> {
padding: EdgeInsets.symmetric(horizontal: 20.0), padding: EdgeInsets.symmetric(horizontal: 20.0),
child: Row( child: Row(
children: <Widget>[ children: <Widget>[
Text(s.play, Text(s.play.toUpperCase(),
style: TextStyle( style: TextStyle(
color: Theme.of(context).accentColor, color: Theme.of(context).accentColor,
fontSize: 15, fontSize: 15,