I’ve developed Vuejs PWA. The app allows users to upload images from their phones. It usually works fine. The user is able to select from the options - take a photo or upload from the camera roll. When the user downloads the app to the homescreen the image upload sometimes didn't ask to select from those options but the camera directly opens. This happens both on IOS and Android. Is there a way to force the input field to always show dropdown options? Below is the code that I am using for the input file.
<input type="file" multiple accept="image/png,image/jpeg,image/JPEG,image/jpg"/>
I want this dropdown to open when I click on the input file.