-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
29 lines (24 loc) · 970 Bytes
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import 'package:skeleton_walk/models/player_data.dart';
import 'package:skeleton_walk/models/settings_data.dart';
import 'package:skeleton_walk/skeleton_game/skeleton_game_app.dart';
import 'package:flame/flame.dart';
import 'package:flutter/material.dart';
import 'package:hive/hive.dart';
import 'package:path_provider/path_provider.dart';
Future<void> main() async {
// Ensures that all bindings are initialized
// before was start calling hive and flame code
// dealing with platform channels.
WidgetsFlutterBinding.ensureInitialized();
// Makes the game full screen and landscape only.
await Flame.device.fullScreen();
await Flame.device.setLandscape();
await _initHive();
runApp(const SkeletonGameApp());
}
Future<void> _initHive() async {
final dir = await getApplicationDocumentsDirectory();
Hive.init(dir.path);
Hive.registerAdapter<PlayerData>(PlayerDataAdapter());
Hive.registerAdapter<SettingsData>(SettingsDataAdapter());
}