mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
5602b1ed80
* updated pub version * added lint * --code=always_use_package_imports * dart fixes * format * other lints
11 lines
331 B
Dart
11 lines
331 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/application.dart';
|
|
import 'package:lightmeter/environment.dart';
|
|
import 'package:lightmeter/firebase.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await initializeFirebase();
|
|
|
|
runApp(const Application(Environment.prod()));
|
|
}
|