kendall
kendall
Hey, I'm having issues opening a .js extension file on my Pixel 3A (Android 10) - works fine on iOS. My current solution is to just force the file to...
Same issue https://github.com/flutter/flutter/issues/55750, Keyboard_visibility, https://pub.dev/packages/keyboard_visibility breaks, with the integration of local_auth, https://pub.dev/packages/local_auth breaks keyboard listeners. Steps to reproduce: 1) Changing FlutterActivity in MainActivity.kt to FlutterFragmentActivity will cause all of the...
I wanted to enable autofill in my login widget. ``` AutofillGroup( child: Column( mainAxisSize: MainAxisSize.min, children: [ TextFormField( autofillHints: const [AutofillHints.email], ), TextFormField( autofillHints: const [AutofillHints.password], ),])) ``` Here are...