-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Consider implementing RCTModalHostView #618
Comments
is there a list of components implemented vs not implemented? maybe someplace inside the code to refer to (since documentation can be out of date). when writing an RN app, it would be nice to know that i'm coding against a component that isn't supported for windows. like a grid listing components with checkmark for support. |
The list is here: https://github.com/ReactWindows/react-native-windows/blob/master/docs/CoreParityStatus.md I also need the modal component and I will try to temporary simulate it with absolute positioning view somehow. I dont know if it will work. |
Hello, any updates on this? Has someone found a good workaround? |
It is possible to do a pure JS implementation, which is what we're doing for now.
|
@kevinvangelder Thanks for the answere. So you just define then a "smaller" screen in the style, right? |
Correct, and it has the added benefit that you get full control of the backdrop (the RN modal only lets you control transparency via Boolean). Just be sure to render it last thing or use a z-index. |
Do you have an example style? That would be awesome. |
|
need this |
It's pretty hard to use react-native-windows without RCTModalHostView because a lot of 3rd party components use Modal to position elements. |
My first stab at creating a modal implementation #618
Closed by #1996 |
https://facebook.github.io/react-native/docs/modal.html
The text was updated successfully, but these errors were encountered: