sqflite_spatial 1.0.0
sqflite_spatial: ^1.0.0 copied to clipboard
Android Flutter plugin for SQLite with SpatiaLite spatial query support (geospatial storage, indexing and querying), forked from sqflite.
import 'package:flutter/material.dart';
import 'package:sqflite_example_common/main.dart';
import 'spatial_test_page.dart';
const _testSpatialRoute = '/test/spatial';
Future<void> main() async {
supportsCompatMode = true;
extraRoutes = {
_testSpatialRoute: (BuildContext context) => SpatialTestPage(),
};
mainExampleApp();
}