소스 검색

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,