mock password length

This commit is contained in:
niuhuan 2021-12-15 23:44:05 +08:00
parent f753bff06b
commit e291bb36c7
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ class _AccountScreenState extends State<AccountScreen> {
),
ListTile(
title: Text("密码"),
subtitle: Text(_password == "" ? "未设置" : '\u2022' * 48),
subtitle: Text(_password == "" ? "未设置" : '\u2022' * 10),
onTap: () async {
String? input = await displayTextInputDialog(
context,

View File

@ -139,7 +139,7 @@ class _RegisterScreenState extends State<RegisterScreen> {
),
ListTile(
title: Text("密码 (8位以上)"),
subtitle: Text(_password == "" ? "未设置" : '\u2022' * 48),
subtitle: Text(_password == "" ? "未设置" : '\u2022' * 10),
onTap: () async {
String? input = await displayTextInputDialog(
context,