-
Notifications
You must be signed in to change notification settings - Fork 213
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: layout Overflow Issues in About Us Page and Handle Null cases in Images #1143
base: flutter_app
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis pull request fixes the layout overflow issue on the About Us screen by wrapping the affected section in a SingleChildScrollView with a horizontal scroll direction. It also includes minor updates like adding const keywords to various widgets and improving the null check in the converters.dart file. Class diagram showing the updated AboutUsScreen widget structureclassDiagram
class AboutUsScreen {
+build() Widget
}
class _AboutUsScreenState {
-build() Widget
}
class SingleChildScrollView {
+scrollDirection: Axis
+child: Widget
}
AboutUsScreen --> _AboutUsScreenState
_AboutUsScreenState --> SingleChildScrollView
SingleChildScrollView --> Row
Row --> Text
Row --> GestureDetector
note for SingleChildScrollView "New wrapper to fix overflow"
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @Nimeshan - I've reviewed your changes - here's some feedback:
Overall Comments:
- Please update the PR description to fully describe all changes made, including the const optimizations and null safety improvements, not just the layout overflow fix.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Thanks, in the description field please mention "Resolves #1136". In the title actually mention what you are fixing. This will a) automatically close the issue on merge and b) help to draft release notes. |
Will do @mariobehling Thanks for Informing me |
92c0f62
to
093c170
Compare
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 much! Might want to rebase before we merge this
fa51bb2
to
b25dc15
Compare
The Following Pull Request Resolves #1136 in this I have fixed the Layout overflow in About Us Screen Issue by using SingleChildScrollView and scrollDirection. Also I have added updates like adding const keywords to various widgets and improving the null check in the converters.dart file.
Summary by Sourcery
Fix layout overflow in the About Us screen and handle potential null cases when decoding image data.
Bug Fixes:
Enhancements: