-
Notifications
You must be signed in to change notification settings - Fork 77
1.2.0 release #183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.2.0 release #183
Conversation
… non-nullable (with defaultInitialCameraPosition), Fix #117
…ters with default values
…tude from Future<double> to double (non-async function)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. All comments are nitpicking.
Text(title, | ||
style: getTextTheme(context).titleMedium, | ||
maxLines: 1, | ||
softWrap: false, | ||
overflow: TextOverflow.fade), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
Text(title, | |
style: getTextTheme(context).titleMedium, | |
maxLines: 1, | |
softWrap: false, | |
overflow: TextOverflow.fade), | |
Text( | |
title, | |
style: getTextTheme(context).titleMedium, | |
maxLines: 1, | |
softWrap: false, | |
overflow: TextOverflow.fade, | |
), |
Color get buttonColor => nightMode ? Colors.grey.shade900 : Colors.white; | ||
Color get iconColor => | ||
nightMode ? Colors.grey.shade200 : Colors.grey.shade800; | ||
Color get dividerColor => | ||
nightMode ? Colors.grey.shade700 : Colors.grey.shade200; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Maybe it would be more flexible if the dark and light colors were defined in the constructor with default values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
맞습니다. 다만, 이게 API 형태로 어떻게 노출될 지를 결정해야할 수도 있어서 일단은 기존 SDK의 줌 컨트롤 위젯을 모방했습니다.
#173 이 아직 작업중이므로, 작업에 참고하도록 하겠습니다. 감사합니다!
리뷰해주신 리핵님께(@leehack ) 감사드립니다!!! |
작업중이었던 #173 은 다음버전에서 제공될 예정입니다.
1.2.0
Improve
NaverMapController.nowCameraPosition
as a experimental api which type isNCameraPosition
(non-async)NCameraUpdate.setReason
NaverMapController.getMeterPerDp
&
NaverMapController.getMeterPerDpAtLatitude
to non-async (Future -> double)NCameraUpdate.setAnimation
to have non-null parameters with default valuesNaverMapViewOptions.initialCameraPosition
to non-nullable typeBreaking Change
Fix