Iam newbie to ionic and creating a basic mobile app after learning ionic online.
I had created a customer details form page where customers need to enter their details like, name, gender, dob, city etc.
Instead of manually entering the entering the details, I want to put QR Scanner in the page so that when Aadhaar or any other barcode details saver QR code gets scanned the customer details needs to gets filled automatically.
Below is the code
<ion-content>
<ion-item>
<ion-label position="floating" >Full Name</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >DOB</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >Gender</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >Address</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >State</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >District</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >City</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" >Postal Code</ion-label>
<ion-input type="text" ></ion-input>
</ion-item>
I tried installing the ionic qr scanner plugins
ionic cordova plugin add cordova-plugin-qrscanner
npm install @ionic-native/qr-scanner
But no idea how to proceed further. Please help me on this, i got struct on this from last 10 days Thank you