xiao_pet_tracker/lib/main_development.dart

9 lines
271 B
Dart
Raw Normal View History

2024-10-28 20:10:55 +01:00
import 'package:flutter_blue_plus_windows/flutter_blue_plus_windows.dart';
import 'package:xiao_pet_tracker/app/app.dart';
import 'package:xiao_pet_tracker/bootstrap.dart';
void main() {
FlutterBluePlus.setLogLevel(LogLevel.verbose);
bootstrap(() => const App());
}