Skip to content

Commit

Permalink
Fix clock screen
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Apr 12, 2024
1 parent 3f6ae0e commit 1d0d7f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/src/view/clock/clock_screen.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:lichess_mobile/src/model/clock/clock_controller.dart';
Expand All @@ -17,7 +16,7 @@ class _ClockScreenState extends State<ClockScreen> {
@override
Widget build(BuildContext context) {
return const ImmersiveModeWidget(
child: _Body(),
child: Scaffold(body: _Body()),
);
}
}
Expand Down

0 comments on commit 1d0d7f9

Please sign in to comment.