skip to Main Content

Flutter AutoFillGroup/Autofill hints not working

My code to show and submit login form: class LoginWidget extends StatelessWidget { const LoginWidget({ super.key, }); @override Widget build(BuildContext context) { final citiesLoaded = context.select((LoginBloc bloc) => bloc.state.citiesLoaded); final loginBloc = context.read<LoginBloc>(); final selectedCity = (citiesLoaded && loginBloc.state.cities.length ==…

VIEW QUESTION

Magento 2: Add "autocomplete" attribute to checkout fields

We're running our site on Magento CE2.4.1. Currently, checkout fields have the following attributes: <input class="input-text" type="text" data-bind=" value: value, valueUpdate: 'keyup', hasFocus: focused, attr: { name: inputName, placeholder: placeholder, 'aria-describedby': getDescriptionId(), 'aria-required': required, 'aria-invalid': error() ? true : 'false',…

VIEW QUESTION
Back To Top
Search