Miguel Collado

Results 5 comments of Miguel Collado

Another solution is also, in the settings.py file of your project, add the following lines above all: ```python from six import python_2_unicode_compatible import django.utils.encoding django.utils.encoding.python_2_unicode_compatible = python_2_unicode_compatible ``` In this...

I was experiencing this issue and I was lost. This workaround saved my day. I'm using the same technologies as you, Flutter + Flask.

Same here: ``` $ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Linux, locale es_ES.UTF-8) [✓] Android toolchain - develop...

In file FlutterBarcodeScannerPlugin.java I've modified all reference to `FlutterActivity` to `FlutterFragmentActivity` and now it works. This is a workaround that works for me.