mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-09-17 10:36:39 +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));
|
|
}
|