1

I have a React app running inside a Cordova wrapper and want to disable landscape mode for only iPod users. Does anyone know how to do this? I'm assuming I need to add something within config.xml.

Ralph David Abernathy
  • 5,230
  • 11
  • 51
  • 78

1 Answers1

0

You can set preference in your config.xml.

<preference name="orientation" value="portrait" />
Nisan Coşkun
  • 516
  • 7
  • 15