const field = TextField("Placeholder...",(value:string)=>text.set(value))
stateBindTextfield(text, field)
This execution can only obtain the binding value on the web, and the actual (value: string)=>text. set (value) is not executed. It is executed on the web, but the obtained value is empty
const field = TextField("Placeholder...",(value:string)=>text.set(value))
stateBindTextfield(text, field)
This execution can only obtain the binding value on the web, and the actual (value: string)=>text. set (value) is not executed. It is executed on the web, but the obtained value is empty