Skip to content
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.4.4

### Change
- change compass widget tap to reset animation duration to 300ms


## 1.4.3

### Add (New Features)
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widget/elements/compass_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class _NCompassWidgetState extends State<NCompassWidget> {
if (currentBearing == null || currentBearing == 0) return;

widget.naverMapController?.updateCamera(NCameraUpdate.withParams(bearing: 0)
..setAnimation(duration: Duration.zero)
..setAnimation(duration: const Duration(milliseconds: 300))
..setReason(NCameraUpdateReason.control));
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_naver_map
description: Naver Map plugin for Flutter, which provides map service of Korea.
version: 1.4.3
version: 1.4.4
homepage: https://github.com/note11g/flutter_naver_map
documentation: https://note11.dev/flutter_naver_map

Expand Down
Loading