mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
10 lines
205 B
Dart
10 lines
205 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
import 'application.dart';
|
||
|
import 'environment.dart';
|
||
|
|
||
|
void launchApp(Environment env) {
|
||
|
WidgetsFlutterBinding.ensureInitialized();
|
||
|
runApp(Application(env));
|
||
|
}
|