From deb2d961c43defcdbad342acf9546fe3951b2096 Mon Sep 17 00:00:00 2001 From: fuwa Date: Sun, 23 Feb 2020 22:16:57 +0800 Subject: [PATCH] fix a null switch --- cyberwow/lib/widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyberwow/lib/widget.dart b/cyberwow/lib/widget.dart index 89ac2dc..c289470 100644 --- a/cyberwow/lib/widget.dart +++ b/cyberwow/lib/widget.dart @@ -37,6 +37,6 @@ Widget build(final BuildContext context, final AppState state) { case SyncedState: return synced.build(context, state); case ReSyncingState: return resyncing.build(context, state); case ExitingState: return exiting.build(context, state); - default: Placeholder(); + default: return Placeholder(); } }