Explorar el Código

Update copies

Vishnu Mohandas hace 4 años
padre
commit
555cdd1093
Se han modificado 1 ficheros con 10 adiciones y 4 borrados
  1. 10 4
      lib/ui/recovery_key_dialog.dart

+ 10 - 4
lib/ui/recovery_key_dialog.dart

@@ -13,7 +13,8 @@ class RecoveryKeyDialog extends StatefulWidget {
   final String doneText;
   final Function() onDone;
 
-  RecoveryKeyDialog(this.recoveryKey, this.doneText, this.onDone, {Key key}) : super(key: key);
+  RecoveryKeyDialog(this.recoveryKey, this.doneText, this.onDone, {Key key})
+      : super(key: key);
 
   @override
   _RecoveryKeyDialogState createState() => _RecoveryKeyDialogState();
@@ -77,7 +78,9 @@ class _RecoveryKeyDialogState extends State<RecoveryKeyDialog> {
           crossAxisAlignment: CrossAxisAlignment.start,
           children: [
             Text(
-                "if you forget your password, you can recover your data with this key"),
+              "if you forget your password, you can recover your data with this key",
+              style: TextStyle(height: 1.2),
+            ),
             Padding(padding: EdgeInsets.all(8)),
             GestureDetector(
               onTap: () async {
@@ -104,8 +107,11 @@ class _RecoveryKeyDialogState extends State<RecoveryKeyDialog> {
             ),
             Padding(padding: EdgeInsets.all(8)),
             Text(
-              "please save this key in a safe place",
-              style: TextStyle(height: 1.2),
+              "we don't store this key",
+            ),
+            Padding(padding: EdgeInsets.all(8)),
+            Text(
+              "so please save this in a safe place",
             ),
           ],
         ),