Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从电话中选择联系人并将其显示在文本字段中。但即使变量在日志中发生更改,文本字段也未显示更改的值。我正在使用联系人选择器包。
这是变量声明:
联系按钮的代码是
你能试试这个
_contactPicker.selectContact().then( setState((){ _contact = contact; }); );
代替
Contact contact = await _contactPicker.selectContact(); setState((){ _contact = contact; });
而且我不确定您的 ReusableEditText。如果您不使用它,您可能需要一个 TextEditingController。