geopoint_location 0.4.0 copy "geopoint_location: ^0.4.0" to clipboard
geopoint_location: ^0.4.0 copied to clipboard

Handle real time location data. Get structured Geopoint data from Geolocator

example/lib/main.dart

import 'package:flutter/material.dart';

import 'index.dart';
import 'simple.dart';
import 'stream.dart';

final routes = {
  '/simple': (BuildContext context) => SimplePage(),
  '/stream': (BuildContext context) => StreamPage(),
};

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Geopoint location demo',
      home: IndexPage(),
      routes: routes,
    );
  }
}
4
likes
40
pub points
37%
popularity

Publisher

unverified uploader

Handle real time location data. Get structured Geopoint data from Geolocator

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

cupertino_icons, extra_pedantic, flutter, geolocator, geopoint, pedantic, slugify2

More

Packages that depend on geopoint_location