Skip to content

Commit

Permalink
Resolved the compilation issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
RathanakumarSekar committed Jun 16, 2021
1 parent e9fd5e0 commit c9912c8
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/samples/maps/tile_layer/vector_layer/arcs.dart
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ class _ArcsSampleState extends SampleViewState
late MapZoomPanBehavior _zoomPanBehavior;
late MapTileLayerController _mapController;
late AnimationController _animationController;
late Animation _animation;
late Animation<double> _animation;
int _currentSelectedCityIndex = 0;
bool _isDesktop = false;
bool _enableDashArray = false;
2 changes: 1 addition & 1 deletion lib/samples/maps/tile_layer/vector_layer/polylines.dart
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ class _PolylinesSampleState extends SampleViewState
late MapZoomPanBehavior _zoomPanBehavior;
MapTileLayerController? _mapController;
AnimationController? _animationController;
late Animation _animation;
late Animation<double> _animation;
late bool _isDesktop;
late List<_RouteDetails> _routes;
int _currentSelectedCityIndex = 0;

0 comments on commit c9912c8

Please sign in to comment.