-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Searchbar style fix #326
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
Searchbar style fix #326
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.
@jurgenizer, thanks for submitting a PR! I've pinged a couple engineers who work with our Cupertino package to get more domain expertise for the review.
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
CLANG_ENABLE_MODULES = YES; | ||
CURRENT_PROJECT_VERSION = 8; | ||
DEVELOPMENT_TEAM = ""; |
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.
These lines can just be taken out.
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.
lines removed
Ah, it looks like our automated tests have flagged the formatting in |
child: CupertinoTextField( | ||
controller: controller, | ||
focusNode: focusNode, | ||
decoration: BoxDecoration(), |
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.
According to the documentation decoration
is nullable. So:
decoration: BoxDecoration(), | |
decoration: null, |
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.
Thanks! I updated it now
Awesome. Sounds like we've got the right change. @jurgenizer, I think there are still some changes in the project file that need to be taken out. Other than that, though, this looks ready to land! |
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.
Thanks for submitting! I'm going to land this now.
A styling fix to remove the white area behind the CupertinoTextField.
The fix makes search bar look like default iOS search bar.
before:

after:
