mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
31ef42c4c0
* added source code list tile * added settings sections * wip * moved theme tiles to separate folders * added env * added contact email * widget folders * dynamic colors -> dynamic color * fixed `SettingsSection` clipBehavior * version bump * typo * updated flutter to 3.7 * added style guide * typo * Update style_guide.md * Update README.md * Update README.md * Update README.md
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));
|
|
}
|