mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
12 lines
238 B
Dart
12 lines
238 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'place_tracker_app.dart';
|
|
|
|
void main() {
|
|
runApp(ChangeNotifierProvider(
|
|
create: (context) => AppState(),
|
|
child: PlaceTrackerApp(),
|
|
));
|
|
}
|