Ionic Scroll Bar in android device is not visible - ionic-framework

I have tried everything to show Ionic scrollbar on my android device but not able to do. I can see in browser but in device it is not simply visible.

Related

Flutter Firebase-Cloud-Messaging not appearing in android emulator

I have a FCM setup in my flutter app. Everything works as expected in the iOS world, but I can't get it to work in the android world. I can see the Push-Notification in the notification drawer, but they don't appear like the classic Push-Notification widget in the top bar. What am I doing wrong?
Android Emulators won't work. You need a physical device if you want to test cloud-messaging on Android.

How to disable minimizing ios simulator on outside click in android studio?

I am learning flutter. I created flutter app and successfully installed in android and IOS simulator, I have a problem using ios simulator, when i click outside the simulator it get minimized. I want to disable it or want to open in android studio's window screen, is it possible or how can i do that?
Click on your simulator, Go to the windows tab and check "Stay On Top".

Run flutter application into iOS virtual device on virtualized OSX

I have some performance problems running my Flutter application inside iOS simulator installed inside a VirtualBox OSx machine. The simulator run and the application is deployed without any problem. But there is lag when the screen has to be redrawn. For example, when I click on a button which opens a modal sheet, the image is stuck, I can unlock it simply dragging the IOs bottom bar of a few pixels. It's difficult to test the application since every time I have to move that bar a few pixels in order to update the phone image. This is an example of my problem:
As you can see the image is redrawn just after I click and move the iOS bottom bar.
Here a simulation of a native iOS app:
Here as you can see the screen has to redraw, I don't need to move the bottom bar.
Any suggestion?

cordova-plugin-qrscanner not showing up in ios

I used cordova-plugin-qrscanner for my ionic 2 application. When i click on a tab the scanner will be opened. It works perfectly in android, but in ios the camera is not shown on the screen but it scans blindly. When i change the orientation of the screen the camera is displayed properly.
I tried to reload the page usingwindow.location.reload() but it didnt work.
Thanks in advance.

iPhone mobile Safari vs home screen link resize issue

I am trying to write a web app for Android and iPhone.
I have an issue when the device orientation changes. On the Android the orientationChanged event fires (from portrait to landscape) before the new horizontal dimensions are reported (reports portrait dimensions, with iPhone it fires AFTER (reports landscape dimensions...correct behavior).
So I fell back to the resize event. Another issue cropped up. Android works fine in browser. iPhone is works fine when the app is launched from the home screen. However in mobile safari, the resize event is never triggered when roating from landscape to portrait, since the browser just provides you the capability to scroll around the page horizontally.
I need a way to detect an orientation change event and get the new dimensions from DOM elements in order to resize other elements on the screen that will work for Android, mobile Safari and home screen web apps.
Thanks
Fell back to device detection, since there is no reliable way of doing this generically.