mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-05-19 22:50:40 +00:00
12 lines
294 B
Dart
12 lines
294 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/environment.dart';
|
|
|
|
import 'application.dart';
|
|
import 'firebase.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await initializeFirebase();
|
|
|
|
runApp(const Application(Environment.prod()));
|
|
}
|