sybrands-place
sybrands-place
@sososdk I've created a pull-request for this feature: https://github.com/sososdk/flash/pull/44
Flutter 3.19.3 focus issue still ocuring: using code: ```dart Form( key: _formKey, child: AutofillGroup( onDisposeAction: AutofillContextAction.cancel, child: ... (TextField with AutofillHints.email and another for AutofillHints.password) ``` Everytime when pressing on...
You can solve this by ```dart final min = 20; final max = 200; WheelSlider( horizontalListWidth: 360, totalCount: max - min, initValue: (max / 2) - min, isInfinite: false, onValueChanged:...