20 lines
471 B
Dart
20 lines
471 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:fullscreen/fullscreen.dart';
|
|
import 'core/presentation/home/page/home_page.dart';
|
|
|
|
void main() {
|
|
runApp(const GuessingWords());
|
|
}
|
|
|
|
class GuessingWords extends StatelessWidget {
|
|
const GuessingWords({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
FullScreen.enterFullScreen(FullScreenMode.EMERSIVE_STICKY);
|
|
return const MaterialApp(
|
|
home: HomePage(),
|
|
);
|
|
}
|
|
}
|