I Have a used IsRTL perfect Work in Ios but not working in Android And firsttime App RTl second Time not Rtl In react-native and also restart So i don't want to restart my app and change directation how to solve ios and android boath in react-native?
i have try to IsRtl and Force Rtl but not working properly in boath devices
Related
I'm developing an android app using ionic, I created a new app with side menu , when i run the app icons appear in the web browser and in simulator but don't appear in the my android device (oppo A5s cph1909 with color os5.2.1) i also tried with other mobiles like samsung and other oppo it works fine .i also tried before an svg image i got a bad structured image in the android device (oppo A5s).
Any idea?
I'm developing a ReactJS PWA. When I load the URL from my desktop and android, it works totally fine. But when I use iPhone, it shows a blank with a background image that I set to body tag. But it's blank.
By the way, I've used npx create-react-app for my project.
Can you please tell me why this is happening and what's the solution?
My tablet with android 6 doesn't show svg image, there is a grey image instead. My application is made with cordova and vuejs.
I've try to launch my application with a tablette with android 7 and an other with android 9 and it's working perfectly. I think the problem is because of the android webview...
If someone has the solution of my problem or has an other opinion.
Thank you.
I have a web app I've run through Cordova/PhoneGap to create an iOS app. When I run the site on mobile Safari, zooming in and out works fine, but on the iPhone and iPad pinch to zoom doesn't work anymore.
Is there something in Cordova that would be preventing normal zooming from working?
The app uses the RaphaelJS plugin but that's all, aside from the cordova js library
you need to enable the ViewportScale in the Cordova.plist, which is set to NO by default.
Hi i write simple app using jqm and phonegap, and i have some problem with change orientation. I need to change orientation on one page. I can change values "Supported interface orientations" but it work on all pages, may be exist way to change orientation on one page ?
You can use this plugin.
https://github.com/champierre/pg-plugin-screen-orientation
To lock the screen to Landscape:
navigator.screenOrientation.set('landscape');
To lock the screen to Portrait:
navigator.screenOrientation.set('portrait');
To unlock:
navigator.screenOrientation.set('fullSensor');
Here is an updated plugin which works perfectly for me: https://github.com/apache/cordova-plugin-screen-orientation
To use it (for cordova version > 4) execute this command:
cordova plugin add cordova-plugin-screen-orientation
Or for phonegap:
phonegap plugin add cordova-plugin-screen-orientation
Then use it like this:
screen.lockOrientation('portrait')
screen.lockOrientation('landscape')
Works for Android & iOS.