mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
9 lines
239 B
Dart
9 lines
239 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/environment.dart';
|
|
|
|
import 'application.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
runApp(const Application(Environment.prod()));
|
|
}
|