amap_all_fluttify 0.11.1 copy "amap_all_fluttify: ^0.11.1" to clipboard
amap_all_fluttify: ^0.11.1 copied to clipboard

discontinuedreplaced by: amap_map_fluttify
outdated

An `Amap` Flutter plugin, include `search`, `location`, `map` component.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: \n'),
        ),
      ),
    );
  }
}