我正在使用Flutter开发Google Places API。我正在使用example。但我得到了错误的谷歌地方API类为
例如:
Undefined class 'targeted'。请尝试将名称更改为现有类的名称,或创建一个具有名称的类
我在dart文件中导入flutter_google_places
为:import 'package:flutter_google_places/flutter_google_places.dart';
但是我仍然得到了所有类的错误。
使用flutter_google_places
版本0.2.3
。
4条答案
按热度按时间8ehkhllq1#
GoogleMapPlaces可在不同的库中使用,而不是flutter_google_places...
它在https://pub.dev/packages/google_maps_webservice上可用
kadbb4592#
你可以找到另一个包为谷歌地方google_place
brqmpdu13#
您需要在main.dart中导入
import 'package:google_maps_webservice/places.dart';
。n3schb8v4#