【发布时间】:2021-09-07 06:15:28
【问题描述】:
我收到此错误:
[AutoFill] 无法显示应用 bundleID 的自动强密码:com.my.app 由于错误:无法保存此应用的密码。确保您已为您的应用设置关联域并在设置中启用自动填充密码
我已启用关联域和自动填充凭据提供程序
appstore connect 也启用了关联域。
在我的物理设备上启用了自动填充
这是我的代码
AutofillGroup(
child: Column(
children: <Widget>[
CupertinoTextField(
controller: email,
enableSuggestions: true,
keyboardType: TextInputType.emailAddress,
autofillHints: [AutofillHints.email],
),
CupertinoTextField(
controller: newPassword,
enableSuggestions: true,
autofillHints: [AutofillHints.newPassword],
)
],
),
)
我希望发生这种情况:
【问题讨论】: