Yaraslau

Results 2 comments of Yaraslau

> I have the same issue. I think the root cause is the file `android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml` with content > > ``` > > > > ``` > > is being generated...

@jlin5 You can already easily use CustomPainter in overlayBuilder. ```dart MobileScanner( overlayBuilder: (_, constraints) => CustomPaint( painter: YourScannerFramePainter( screenWidth: constraints.maxWidth, screenHeight: constraints.maxHeight, ), child: Container(), ), ); ```