颤振无法运行,使用后google_maps_autocomplete



我从flutter_google_places_autocomplete复制了此代码,但我的应用程序无法启动更多代码。

我该如何解决这个问题?

import 'package:flutter/material.dart';
import 'package:flutter_google_places_autocomplete/flutter_google_places_autocomplete.dart';
import 'package:flutter_prayer_times/place_search_banner_field.dart';

// Google Api Key
const googleMapsApiKey = "......";
// to get places detail (lat/lng)
GoogleMapsPlaces _places = GoogleMapsPlaces(apiKey: googleMapsApiKey);
Launching libmain.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
Running Gradle task 'assembleDebug'...
Kotlin plugin should be enabled before 'kotlin-android-extensions'
Compiler message:
file:///C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_google_places_autocomplete-0.1.0/lib/src/flutter_google_places_autocomplete.dart:327:35: Error: Too many positional arguments: 0 allowed, but 1 found.
Try removing the extra positional arguments.
_places = new GoogleMapsPlaces(widget.apiKey);
^
file:///C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/google_maps_webservice-0.0.14/lib/src/places.dart:22:3: Context: Found this candidate, but the arguments don't match.
GoogleMapsPlaces({
^
Compiler failed on C:UsersGaminKhDesktopMyProjectsprayertimesflutter_prayer_timeslibmain.dart
Finished with error: Gradle task assembleDebug failed with exit code 1

flutter_google_places_autocomplete已被弃用,您应该使用flutter_google_places.查看此链接以获取完整答案。

相关内容

  • 没有找到相关文章

最新更新