flutter_geopackage 0.4.4+1 copy "flutter_geopackage: ^0.4.4+1" to clipboard
flutter_geopackage: ^0.4.4+1 copied to clipboard

outdated

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(),
    );
  }





}