simple_google_maps_flutter 0.1.0 copy "simple_google_maps_flutter: ^0.1.0" to clipboard
simple_google_maps_flutter: ^0.1.0 copied to clipboard

PlatformAndroid

A clone of google_maps_flutter but use simple_platform_view instead of AndroidView for performance optimization

A clone of google_maps_flutter but use simple_platform_view instead of AndroidView for performance optimization

Getting started #

Please check the simple_platform_view package before using this package, as simple_platform_view comes with several drawbacks that need to be considered beforehand.

Usage #

Platform Status
Android
iOS

Download the custom engine

simple_platform_view requires modifications to the engine itself. Therefore, to run it on Android, you need to use a modified version of Flutter.

Download the custom Flutter version Here.

Unzip the downloaded flutter.zip file.

Run the following command to download the custom engine artifacts for the first time:

   $ path_to_custom_version/flutter/bin/flutter doctor

Then use it same as a normal Flutter installation:

   $ path_to_custom_version/flutter/bin/flutter build apk

Add the following dependency to your pubspec.yaml file:

dependencies:
  google_maps_flutter:
  simple_google_maps_flutter:

Android:

Replace the default GoogleMapsFlutterPlatform.instance with the modified version:

  import 'package:simple_google_maps_flutter/simple_google_maps_flutter.dart';

  @override
  void initState() {
      super.initState();
      if (Platform.isAndroid) {
          SimpleGoogleMapsFlutterAndroid.registerWith();
      }
  }

If you are using Google Map inside a scroll view, add this to your MaterialApp to prevent issues with StretchingOverscrollIndicator:

  import 'package:simple_platform_view/simple_platform_view.dart';

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      // Fix StretchingOverscrollIndicator issues
      scrollBehavior: SimplePlatformViewScrollBehavior(),
    );
  }

Other usage is just like google_maps_flutter package

iOS:

iOS is not supported

Demo
2
likes
140
pub points
8%
popularity

Publisher

unverified uploader

A clone of google_maps_flutter but use simple_platform_view instead of AndroidView for performance optimization

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, google_maps_flutter_platform_interface, simple_platform_view, stream_transform

More

Packages that depend on simple_google_maps_flutter