瀏覽代碼

Lock the password entry screen during reset flow

Vishnu Mohandas 4 年之前
父節點
當前提交
a8e70aa7d4
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      lib/ui/password_entry_page.dart

+ 2 - 0
lib/ui/password_entry_page.dart

@@ -52,6 +52,8 @@ class _PasswordEntryPageState extends State<PasswordEntryPage> {
     return Scaffold(
       appBar: AppBar(
         title: Text(title),
+        leading:
+            widget.mode == PasswordEntryMode.reset ? Icon(Icons.lock) : null,
       ),
       body: _getBody(title),
       resizeToAvoidBottomInset: false,