-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cat-voices): restore unlock password (#994)
* feat: unlock password instructions * feat: remover unlock password * refactor: unify bloc unlock builder * feat: recovery keychain creation
- Loading branch information
1 parent
1965ac3
commit f789198
Showing
19 changed files
with
544 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...voices/lib/pages/registration/recover/seed_phrase/unlock_password_instructions_panel.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import 'package:catalyst_voices/pages/registration/widgets/registration_stage_message.dart'; | ||
import 'package:catalyst_voices/pages/registration/widgets/registration_stage_navigation.dart'; | ||
import 'package:catalyst_voices_localization/catalyst_voices_localization.dart'; | ||
import 'package:flutter/material.dart'; | ||
|
||
class UnlockPasswordInstructionsPanel extends StatelessWidget { | ||
const UnlockPasswordInstructionsPanel({ | ||
super.key, | ||
}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
final l10n = context.l10n; | ||
|
||
return Column( | ||
crossAxisAlignment: CrossAxisAlignment.stretch, | ||
children: [ | ||
const SizedBox(height: 24), | ||
Expanded( | ||
child: SingleChildScrollView( | ||
child: RegistrationStageMessage( | ||
title: Text(l10n.recoveryUnlockPasswordInstructionsTitle), | ||
subtitle: Text( | ||
l10n.recoveryUnlockPasswordInstructionsSubtitle, | ||
), | ||
), | ||
), | ||
), | ||
const SizedBox(height: 10), | ||
const RegistrationBackNextNavigation(), | ||
], | ||
); | ||
} | ||
} |
Oops, something went wrong.