From 489ff893d11f471fcbb1b117dee997c7df4590bc Mon Sep 17 00:00:00 2001 From: Vishnu Mohandas Date: Sun, 1 Nov 2020 22:30:19 +0530 Subject: [PATCH] Simplify passphrase hint text --- lib/ui/passphrase_entry_page.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/ui/passphrase_entry_page.dart b/lib/ui/passphrase_entry_page.dart index 13b60ca87..c428341bd 100644 --- a/lib/ui/passphrase_entry_page.dart +++ b/lib/ui/passphrase_entry_page.dart @@ -63,7 +63,7 @@ class _PassphraseEntryPageState extends State { Padding(padding: EdgeInsets.all(12)), TextFormField( decoration: InputDecoration( - hintText: "something you'll never forget", + hintText: "enter your passphrase", contentPadding: EdgeInsets.all(20), ), controller: _passphraseController1, @@ -77,7 +77,7 @@ class _PassphraseEntryPageState extends State { Padding(padding: EdgeInsets.all(8)), TextFormField( decoration: InputDecoration( - hintText: "something you'll never ever forget", + hintText: "reenter your passphrase", contentPadding: EdgeInsets.all(20), ), controller: _passphraseController2, @@ -139,7 +139,8 @@ class _PassphraseEntryPageState extends State { child: Text("Confirm"), onPressed: () { Navigator.of(context).pop(); - UserService.instance.setupAttributes(context, _passphraseController1.text); + UserService.instance + .setupAttributes(context, _passphraseController1.text); }, ), ],