1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/compass_app/app/lib/main_development.dart
2025-02-12 18:08:01 -05:00

20 lines
588 B
Dart

// Copyright 2024 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import 'package:provider/provider.dart';
import 'config/dependencies.dart';
import 'main.dart';
/// Development config entry point.
/// Launch with `flutter run --target lib/main_development.dart`.
/// Uses local data.
void main() {
Logger.root.level = Level.ALL;
runApp(MultiProvider(providers: providersLocal, child: const MainApp()));
}