Browse Source

Lock the password entry screen during reset flow

Vishnu Mohandas 4 năm trước cách đây
mục cha
commit
a8e70aa7d4
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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,