amap_base_navi 0.3.5 copy "amap_base_navi: ^0.3.5" to clipboard
amap_base_navi: ^0.3.5 copied to clipboard

discontinued
outdated

Fully Functional AMap Flutter Plugin. Based on AndroidView/UiKitView.

example/lib/main.dart

import 'package:amap_base_example/map/map.screen.dart';
import 'package:amap_base_example/navi/navi.screen.dart';
import 'package:amap_base_example/widgets/dimens.dart';
import 'package:amap_base_navi/amap_base_navi.dart';
import 'package:flutter/material.dart';

void main() async {
  await AMap.init('27d67839721288be2ddd87b4fd868822');
  runApp(MaterialApp(home: LauncherScreen()));
}

class LauncherScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('AMaps examples'),
        backgroundColor: Colors.black,
        centerTitle: true,
      ),
      backgroundColor: Colors.grey.shade200,
      body: DefaultTabController(
        length: 2,
        child: Column(
          children: <Widget>[
            Flexible(
              child: TabBarView(children: [
                MapScreen(),
                NaviScreen(),
              ]),
            ),
            SPACE_TINY,
            Container(
              color: Colors.white,
              height: 48,
              child: TabBar(
                tabs: [
                  Text('地图', style: TextStyle(color: Colors.black)),
                  Text('导航', style: TextStyle(color: Colors.black)),
                ],
              ),
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Fully Functional AMap Flutter Plugin. Based on AndroidView/UiKitView.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on amap_base_navi