Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/google_maps_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.6

* Update webview_flutter_lwe to 0.2.0.

## 0.1.5

* Update the example app (`9990a4b1d72158a14924d712e89d4efef3f178d2`).
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This package is not an _endorsed_ implementation of `google_maps_flutter`. There
```yaml
dependencies:
google_maps_flutter: ^2.1.7
google_maps_flutter_tizen: ^0.1.5
google_maps_flutter_tizen: ^0.1.6
```

For detailed usage, see https://pub.dev/packages/google_maps_flutter#sample-usage.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class AnimateCameraPage extends GoogleMapExampleAppPage {
}

class AnimateCamera extends StatefulWidget {
const AnimateCamera({Key? key}) : super(key: key);
const AnimateCamera({super.key});
@override
State createState() => AnimateCameraState();
}
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final List<GoogleMapExampleAppPage> _allPages = <GoogleMapExampleAppPage>[
/// MapsDemo is the Main Application.
class MapsDemo extends StatelessWidget {
/// Default Constructor
const MapsDemo({Key? key}) : super(key: key);
const MapsDemo({super.key});

void _pushPage(BuildContext context, GoogleMapExampleAppPage page) {
Navigator.of(context).push(MaterialPageRoute<void>(
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/map_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class MapUiPage extends GoogleMapExampleAppPage {
}

class MapUiBody extends StatefulWidget {
const MapUiBody({Key? key}) : super(key: key);
const MapUiBody({super.key});

@override
State<StatefulWidget> createState() => MapUiBodyState();
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/marker_icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MarkerIconsPage extends GoogleMapExampleAppPage {
}

class MarkerIconsBody extends StatefulWidget {
const MarkerIconsBody({Key? key}) : super(key: key);
const MarkerIconsBody({super.key});

@override
State<StatefulWidget> createState() => MarkerIconsBodyState();
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/move_camera.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MoveCameraPage extends GoogleMapExampleAppPage {
}

class MoveCamera extends StatefulWidget {
const MoveCamera({Key? key}) : super(key: key);
const MoveCamera({super.key});
@override
State createState() => MoveCameraState();
}
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/padding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PaddingPage extends GoogleMapExampleAppPage {
}

class MarkerIconsBody extends StatefulWidget {
const MarkerIconsBody({Key? key}) : super(key: key);
const MarkerIconsBody({super.key});

@override
State<StatefulWidget> createState() => MarkerIconsBodyState();
Expand Down
3 changes: 1 addition & 2 deletions packages/google_maps_flutter/example/lib/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
import 'package:flutter/material.dart';

abstract class GoogleMapExampleAppPage extends StatelessWidget {
const GoogleMapExampleAppPage(this.leading, this.title, {Key? key})
: super(key: key);
const GoogleMapExampleAppPage(this.leading, this.title, {super.key});

final Widget leading;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/place_circle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PlaceCirclePage extends GoogleMapExampleAppPage {
}

class PlaceCircleBody extends StatefulWidget {
const PlaceCircleBody({Key? key}) : super(key: key);
const PlaceCircleBody({super.key});

@override
State<StatefulWidget> createState() => PlaceCircleBodyState();
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/place_marker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PlaceMarkerPage extends GoogleMapExampleAppPage {
}

class PlaceMarkerBody extends StatefulWidget {
const PlaceMarkerBody({Key? key}) : super(key: key);
const PlaceMarkerBody({super.key});

@override
State<StatefulWidget> createState() => PlaceMarkerBodyState();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class PlacePolygonPage extends GoogleMapExampleAppPage {
}

class PlacePolygonBody extends StatefulWidget {
const PlacePolygonBody({Key? key}) : super(key: key);
const PlacePolygonBody({super.key});

@override
State<StatefulWidget> createState() => PlacePolygonBodyState();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PlacePolylinePage extends GoogleMapExampleAppPage {
}

class PlacePolylineBody extends StatefulWidget {
const PlacePolylineBody({Key? key}) : super(key: key);
const PlacePolylineBody({super.key});

@override
State<StatefulWidget> createState() => PlacePolylineBodyState();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ScrollingMapPage extends GoogleMapExampleAppPage {
}

class ScrollingMapBody extends StatelessWidget {
const ScrollingMapBody({Key? key}) : super(key: key);
const ScrollingMapBody({super.key});

@override
Widget build(BuildContext context) {
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/example/lib/tile_overlay.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TileOverlayPage extends GoogleMapExampleAppPage {
}

class TileOverlayBody extends StatefulWidget {
const TileOverlayBody({Key? key}) : super(key: key);
const TileOverlayBody({super.key});

@override
State<StatefulWidget> createState() => TileOverlayBodyState();
Expand Down
4 changes: 2 additions & 2 deletions packages/google_maps_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ description: Demonstrates how to use the google_maps_flutter_tizen plugin.
publish_to: none

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=2.0.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=3.0.0"

dependencies:
flutter:
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/lib/src/circle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class CircleController {
Future<void> _addCircleEvent(Future<WebViewController>? controller) async {
final String command =
"$_circle.addListener('click', (event) => CircleClick.postMessage(JSON.stringify(${_circle?.id})));";
await (await controller!).runJavascript(command);
await (await controller!).runJavaScript(command);
}

/// Returns `true` if this Controller will use its own `onTap` handler to consume events.
Expand Down
Loading