fix broken build
This commit is contained in:
parent
a421c45cfe
commit
875d02f6ca
7 changed files with 17 additions and 17 deletions
|
@ -86,11 +86,11 @@ class HomeSettingsPage extends StatelessWidget {
|
|||
background: Container(
|
||||
width: double.infinity,
|
||||
color: RED,
|
||||
child: const Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
children: const [
|
||||
Icon(
|
||||
Icons.delete_forever_rounded,
|
||||
color: Colors.white,
|
||||
|
|
|
@ -81,9 +81,9 @@ class _InitWorkflowState extends State<InitWorkflow> {
|
|||
child: Align(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: FilledButton(
|
||||
child: const Row(
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
children: const [
|
||||
Icon(Icons.chevron_left_rounded),
|
||||
Text('Back'),
|
||||
SizedBox(width: 10),
|
||||
|
|
|
@ -191,13 +191,13 @@ class _PlaylistPageState extends State<PlaylistPage> {
|
|||
background: Container(
|
||||
width: double.infinity,
|
||||
color: RED,
|
||||
child: const Padding(
|
||||
padding: EdgeInsets.symmetric(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: HORIZONTAL_PADDING,
|
||||
),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
children: const [
|
||||
Icon(
|
||||
Icons.playlist_remove_rounded,
|
||||
color: Colors.white,
|
||||
|
|
|
@ -179,11 +179,11 @@ class QueuePage extends StatelessWidget {
|
|||
background: Container(
|
||||
width: double.infinity,
|
||||
color: RED,
|
||||
child: const Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
children: const [
|
||||
Icon(
|
||||
Icons.playlist_remove_rounded,
|
||||
color: Colors.white,
|
||||
|
|
|
@ -61,9 +61,9 @@ class _SongsPageState extends State<SongsPage> with AutomaticKeepAliveClientMixi
|
|||
);
|
||||
case StreamStatus.waiting:
|
||||
case StreamStatus.done:
|
||||
return const Column(
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
children: const <Widget>[
|
||||
CircularProgressIndicator(),
|
||||
Text('Loading items...'),
|
||||
],
|
||||
|
|
|
@ -9,8 +9,8 @@ class CurrentlyPlayingControl extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Column(
|
||||
children: [
|
||||
return Column(
|
||||
children: const [
|
||||
SizedBox(height: 10.0),
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 12.0 + 2.0),
|
||||
|
|
|
@ -11,8 +11,8 @@ class PlaybackControl extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Row(
|
||||
children: [
|
||||
return Row(
|
||||
children: const [
|
||||
LoopButton(iconSize: 24.0),
|
||||
PreviousButton(iconSize: 48.0),
|
||||
PlayPauseButton(
|
||||
|
|
Loading…
Add table
Reference in a new issue