Change Native Barcode scanner styling

0
Hello,   I am currently using the Barcode scanner widget from the NativeMobileResources module and I would like to change the size of the widget on the page. Could anyone advice me on how (and where) I can change this? Mendix Studio Pro version: 9.11.1 Thanks in advance!   Kind regards, Mart
asked
1 answers
0

You can wrap the barcode scanner it into a container and give the container a fixed height: 

export const barCodeScannerContainer = {
    container: {
        height: 500
    }
}

 

answered