flutter_geopackage 0.3.0
flutter_geopackage: ^0.3.0 copied to clipboard
A module to support OGC geopackage with sqlite.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'geopackage_test_view.dart';
void main() => runApp(SmashApp());
class SmashApp extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return SmashAppState();
}
}
class SmashAppState extends State<SmashApp> {
@override
Widget build(BuildContext context) {
// If the Future is complete, display the preview.
return MaterialApp(
title: "Test Geopackage App",
debugShowMaterialGrid: false,
debugShowCheckedModeBanner: false,
showPerformanceOverlay: false,
home: GeopackageTestView(),
);
}
}