-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
π©βπ¬ [Investment Day] - Project detail - modal presentation #752
π©βπ¬ [Investment Day] - Project detail - modal presentation #752
Conversation
@@ -25,9 +25,6 @@ public protocol ProjectPamphletViewModelOutputs { | |||
/// Emits a project that should be used to configure all children view controllers. | |||
var configureChildViewControllersWithProject: Signal<(Project, RefTag?), Never> { get } | |||
|
|||
/// Return this value from the view's `prefersStatusBarHidden` method. | |||
var prefersStatusBarHidden: Bool { get } |
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.
Seems unused
@@ -37,11 +37,11 @@ | |||
</subviews> | |||
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/> | |||
<constraints> | |||
<constraint firstItem="Bfz-Sg-Kdb" firstAttribute="trailing" secondItem="bdk-Xa-fm9" secondAttribute="trailing" id="3Dg-lk-oRa"/> | |||
<constraint firstAttribute="trailing" secondItem="bdk-Xa-fm9" secondAttribute="trailing" id="3Dg-lk-oRa"/> |
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.
Changes leading
& trailing
constraints to align to superview
instead of previously safe areas
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.
nice touch!
π² What
Fixes the jaggy animation when showing project screen modally.
π€ Why
Hiding the status bar in landscape mode on iPad causes the modal presentation to cause a weird jump. This happens because we're hiding the status bar in landscape even though it's the default thing on iPhone.
π See
Trello, screenshots, external resources?
β Acceptance criteria