How to enbale maximize mode #11023
-
I have created an app in react native windows. the alignment of the app is breaking when the app is maximized or expanded by dragging. if I close the app and reopen it will open correctly. my requirement is to disable resizing and always be in maximize mode. what is the solution? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Similar question to #11050, so I'll include the response for that here: There isn't going to be any direct JS access to this native functionality (since most of React Native core is from mobile applications where this sort of thing isn't relevant), but when you drop into native code you should be able to do these things. I'd search around for "UWP always maximized" and see what you find. Responses like these for example: |
Beta Was this translation helpful? Give feedback.
Similar question to #11050, so I'll include the response for that here:
There isn't going to be any direct JS access to this native functionality (since most of React Native core is from mobile applications where this sort of thing isn't relevant), but when you drop into native code you should be able to do these things. I'd search around for "UWP always maximized" and see what you find. Responses like these for example: