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