fluxmap 0.2.0 copy "fluxmap: ^0.2.0" to clipboard
fluxmap: ^0.2.0 copied to clipboard

outdated

A map to handle real time location updates for multiple devices. Automatic devices network status management

example/lib/main.dart

import 'package:flutter/material.dart';
import 'map.dart';

final Map<String, MapPage Function(BuildContext)> routes = {
  '/': (BuildContext context) => MapPage(),
};

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Fluxmap demo',
      routes: routes,
    );
  }
}
7
likes
40
pub points
23%
popularity

Publisher

unverified uploader

A map to handle real time location updates for multiple devices. Automatic devices network status management

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

cupertino_icons, device, extra_pedantic, flutter, flutter_map, geodesy, geojson, geopoint, latlong, map_controller, pedantic, provider, rxdart

More

Packages that depend on fluxmap