-
Notifications
You must be signed in to change notification settings - Fork 198
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
fix: resolve layout problem of FindMenuWidget
#467
Conversation
This pr may conflict with #463 . I'll update the later merged branch to resolve possible conflicts with the earlier merged one. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #467 +/- ##
==========================================
+ Coverage 80.42% 80.45% +0.03%
==========================================
Files 281 281
Lines 11683 11698 +15
==========================================
+ Hits 9396 9412 +16
+ Misses 2287 2286 -1
☔ View full report in Codecov by Sentry. |
Surprisingly, there are no conflicts between the two branches that need to be resolved. |
@@ -175,6 +176,26 @@ class _FindMenuWidgetState extends State<FindMenuWidget> { | |||
); | |||
} | |||
|
|||
Widget _iconButton({ |
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.
Please use Widget instead of build 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.
do you mean turn _iconButton
to a new Widget class?
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.
@LucasXu0 done.
Close #464