-
Notifications
You must be signed in to change notification settings - Fork 733
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
Infra/incubator action sheet #3472
base: master
Are you sure you want to change the base?
Conversation
… handling and styling
…option handling, Screen refactor
… headerProps to IncubatorActionSheetScreen
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.
@adids1221
A very partial review, but I'm not sure how the GestureHandlerRootView
change will affect the PR so I'm assigning it back
@@ -36,6 +36,7 @@ type ActionSheetProps = { | |||
message?: string; | |||
/** | |||
* Index of the option represents the cancel action (to be displayed as the separated bottom bold button) | |||
* Relevant for Native IOS ActionSheet only |
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.
Let's add this to the API as well
@@ -107,7 +107,7 @@ const FadedScrollView = (props: Props) => { | |||
|
|||
if (children) { | |||
return ( | |||
<GestureHandlerRootView> | |||
<> |
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.
This breaks TabController
titleLength: TEXT_LENGTH.NO_TEXT, | ||
titleIsProminent: false, | ||
titleIsClickable: false, | ||
subtitleLength: TEXT_LENGTH.NO_TEXT, | ||
showFooter: false, | ||
optionsType: OPTIONS_TYPE.NONE, | ||
visible: false |
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.
It's weird to start from an empty ActionSheet
.
bottom: true, | ||
centerH: true, | ||
width: '95%', | ||
height: _.isEmpty(list) && !gridOptions ? 150 : undefined, |
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.
Not sure what's the point of this; is this a use-case you've seen?
centerH: true, | ||
width: '95%', | ||
height: _.isEmpty(list) && !gridOptions ? 150 : undefined, | ||
//@ts-ignore |
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.
You should not need to ignore this, please fix it.
Description
Incubator.ActionSheet
Changelog
Incubator.ActionSheet
Additional info
#3396