Skip to content

Commit c9912c8

Browse files
Resolved the compilation issue.
1 parent e9fd5e0 commit c9912c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/samples/maps/tile_layer/vector_layer/arcs.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class _ArcsSampleState extends SampleViewState
2929
late MapZoomPanBehavior _zoomPanBehavior;
3030
late MapTileLayerController _mapController;
3131
late AnimationController _animationController;
32-
late Animation _animation;
32+
late Animation<double> _animation;
3333
int _currentSelectedCityIndex = 0;
3434
bool _isDesktop = false;
3535
bool _enableDashArray = false;

lib/samples/maps/tile_layer/vector_layer/polylines.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class _PolylinesSampleState extends SampleViewState
3030
late MapZoomPanBehavior _zoomPanBehavior;
3131
MapTileLayerController? _mapController;
3232
AnimationController? _animationController;
33-
late Animation _animation;
33+
late Animation<double> _animation;
3434
late bool _isDesktop;
3535
late List<_RouteDetails> _routes;
3636
int _currentSelectedCityIndex = 0;

0 commit comments

Comments
 (0)