Open
Description
Is your feature request related to a problem? Please describe.
When rendering the image at any time it prints "loaded image" into my terminal. If you could at least add a toggle to enable/disable such print statements within the widget with the default being no printing that would be awesome.
Additional context
Here is some code to reproduce the printing:
QrImageView(
errorCorrectionLevel: 3,
data: 'https://www.shuttleuteam.com',
version: QrVersions.auto,
size: MediaQuery.of(context).size.width * .8,
embeddedImage: const AssetImage('assets/Images/marker.png'),
foregroundColor: WidgetsBinding.instance.platformDispatcher.platformBrightness == Brightness.light ? Colors.black : Colors.white,
backgroundColor: Theme.of(context).cardColor,
),
Activity