Open
Description
Describe the bug
QR code is distorted when running the app on Pocophone F1, using Flutter 3.29.0
with Impeller
To Reproduce
Steps to reproduce the behavior:
- Use qr_flutter version
4.1.0
and Flutter version3.29.0
- Add a
QrImageView
to the app:
QrImageView(
data: "12345",
version: QrVersions.auto,
dataModuleStyle: QrDataModuleStyle(
color: Colors.blue,
dataModuleShape: QrDataModuleShape.square,
),
eyeStyle: QrEyeStyle(
color: Colors.blue,
eyeShape: QrEyeShape.square,
),
)
- Run the app on the Pocophone F1
- See the distorted QR Code
Expected behavior
The QR code should show normally
Smartphone (please complete the following information):
- Device: Pocophone F1
- OS: Android 10
- MIUI Version 12.0.3
Additional context
When running the app without impeller (using the flag --no-enable-impeller
) the error is gone. So, it seems to be related to Impeller.
Activity