ronak-selldo

Results 3 comments of ronak-selldo

You can use this ``` let placeholderAttriburedString = NSMutableAttributedString(string: "Email") if let isRequired = dataSource["required"] as? Bool, isRequired { let asterix = NSAttributedString(string: " *", attributes: [.foregroundColor: UIColor.red]) placeholderAttriburedString.append(asterix) }...

I think there is no focusNode available in [this]( https://pub.dev/packages/dropdown_search) package. DropdownSearch({ Key? key, this.onSaved, this.validator, this.autoValidateMode = AutovalidateMode.disabled, this.onChanged, this.items = const [], this.selectedItem, this.asyncItems, this.dropdownBuilder, this.dropdownDecoratorProps = const...

Minimal code sample. ``` final _focusNode = FocusNode(); @override void initState() { afterBuild(() { _focusNode.requestFocus(); }); super.initState(); } return Column( mainAxisSize: MainAxisSize.min, children: [ ValueListenableBuilder( valueListenable: widget.field, builder: (context, dynamic...