What is the bug?
I am noticing an inconsistency in tile_display.dart, concerning startOpacity and reloadStartOpacity:
|
const factory TileDisplay.fadeIn({ |
|
/// Duration of the fade. Defaults to 100ms. |
|
Duration duration, |
|
|
|
/// Opacity start value when a tile is faded in, default 1.0. The allowed |
|
/// range is (0.0 - 1.0). |
|
double startOpacity, |
|
|
|
/// Opacity start value when a tile is reloaded, default 1.0. Valid range is |
|
/// (0.0 - 1.0). |
|
double reloadStartOpacity, |
|
}) = FadeInTileDisplay._; |
vs
|
const FadeInTileDisplay._({ |
|
this.duration = const Duration(milliseconds: 100), |
|
this.startOpacity = 0.0, |
|
this.reloadStartOpacity = 0.0, |
One says the default for them is 1.0, but the definition in the other one says 0.0.
How can we reproduce it?
Do you have a potential solution?
No response
What is the bug?
I am noticing an inconsistency in
tile_display.dart, concerningstartOpacityandreloadStartOpacity:flutter_map/lib/src/layer/tile_layer/tile_display.dart
Lines 33 to 44 in 352348e
vs
flutter_map/lib/src/layer/tile_layer/tile_display.dart
Lines 97 to 100 in 352348e
One says the default for them is
1.0, but the definition in the other one says0.0.How can we reproduce it?
Do you have a potential solution?
No response