Skip to content

Commit

Permalink
Merge pull request #4 from onvej-sl/slip39-extendable-backups
Browse files Browse the repository at this point in the history
Update slip39 to 0.3.0
  • Loading branch information
ethicnology committed Jun 6, 2024
2 parents afcaf23 + c9ed33e commit b7b3820
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 262 deletions.
6 changes: 2 additions & 4 deletions lib/screen/create_secret.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ class _CreateSecretScreenState extends State<CreateSecretScreen> {
padding: const EdgeInsets.only(top: 8, bottom: 3),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.white,
onPrimary: Colors.teal,
foregroundColor: Colors.teal, backgroundColor: Colors.white,
),
onPressed: () {
var randomValues = List<int>.generate(
Expand Down Expand Up @@ -173,8 +172,7 @@ class _CreateSecretScreenState extends State<CreateSecretScreen> {
padding: const EdgeInsets.only(top: 3),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.white,
onPrimary: Colors.teal,
foregroundColor: Colors.teal, backgroundColor: Colors.white,
),
onPressed: () {
if (_formKey.currentState!.validate()) {
Expand Down
6 changes: 2 additions & 4 deletions lib/screen/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class HomeScreen extends StatelessWidget {
)),
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.white,
onPrimary: Colors.teal,
foregroundColor: Colors.teal, backgroundColor: Colors.white,
),
onPressed: () {
Navigator.push(
Expand All @@ -48,8 +47,7 @@ class HomeScreen extends StatelessWidget {
const SizedBox(height: 25),
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.white,
onPrimary: Colors.teal,
foregroundColor: Colors.teal, backgroundColor: Colors.white,
),
onPressed: () {
Navigator.push(
Expand Down
3 changes: 1 addition & 2 deletions lib/screen/recover_secret.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ class _RecoverSecretScreenState extends State<RecoverSecretScreen> {
))),
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.white,
onPrimary: Colors.teal,
foregroundColor: Colors.teal, backgroundColor: Colors.white,
),
onPressed: () {
if (_formKey.currentState!.validate()) {
Expand Down
Loading

0 comments on commit b7b3820

Please sign in to comment.