fix(android): edge to edge default behaviour#11233
Conversation
Pages consume the overflow by default, making it easier for containers to overflow once the page allows it .
|
View your CI Pipeline Execution ↗ for commit 5faf740
☁️ Nx Cloud last updated this comment at |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThis PR adjusts Android overflow edge behavior across the NativeScript view hierarchy. ChangesAndroid overflow edge defaults
Suggested labels
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This pull request updates the handling of the
androidOverflowEdgeproperty in Android-specific UI components. The main change is to align the default behavior of overflow edge handling between theContainerViewandPageclasses.Android overflow edge handling:
androidOverflowEdgein theContainerViewconstructor from'none'to'ignore', which alters how overflow is managed for container views.androidOverflowEdgeto'none'in thePageclass constructor, ensuring consistent overflow edge behavior for pages.