Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[google_maps_flutter] Temporary fix for initial coordinate when the surface is changed #6054

Merged
merged 3 commits into from
Jun 28, 2022
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ void main() {
});

testWidgets('testInitialCenterLocationAtCenter', (WidgetTester tester) async {
await tester.binding.setSurfaceSize(const Size(800.0, 600.0));
// TODO(bparrishMines): This line causes the wrong initial coordinate on
// Android. See https://github.com/flutter/flutter/issues/106750
// await tester.binding.setSurfaceSize(const Size(800.0, 600.0));
final Completer<GoogleMapController> mapControllerCompleter =
Completer<GoogleMapController>();
final Key key = GlobalKey();
Expand Down