-
Notifications
You must be signed in to change notification settings - Fork 148
Added Expanded boolean flag #22
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
Conversation
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.
Can someone review it and aprove please?
lib/country_picker_dropdown.dart
Outdated
@@ -11,6 +11,7 @@ class CountryPickerDropdown extends StatefulWidget { | |||
this.itemBuilder, | |||
this.initialValue, | |||
this.onValuePicked, | |||
this.isExpandEnabled |
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.
I think calling it isExpanded should be enough
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.
Updated the flag name.
lib/country_picker_dropdown.dart
Outdated
@@ -11,7 +11,7 @@ class CountryPickerDropdown extends StatefulWidget { | |||
this.itemBuilder, | |||
this.initialValue, | |||
this.onValuePicked, | |||
this.isExpandEnabled | |||
this.isExpanded |
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.
Add false as default value to isExpanded, please.
Updated default value to false.
Thank you=) |
Please let me know when will be the new version published? |
Right aligning drop down image was not happening and on enabling expanded flag it works.
Added isExpandEnabled flag