diff --git a/lib/view/home.dart b/lib/view/home.dart index 8fbd9f5..541c2ab 100644 --- a/lib/view/home.dart +++ b/lib/view/home.dart @@ -114,7 +114,9 @@ class _HomePageState extends State { body: Column( children: [ WatchState((context, state) { - if(!state.show) return const SizedBox.shrink(); + if(!state.show || DateTime.now().hour >= 20 || DateTime.now().hour < 7) { + return const SizedBox.shrink(); + } return const SizedBox( height: 100,