Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions lib/screens/cover.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,27 +83,28 @@ class CoverScreen extends StatelessWidget {
),
),
),
const SizedBox(height: 12),
const SizedBox(height: 8),

// Restore Wallet Button
TextButton(
onPressed: () {
// TODO: Navigate to restore wallet
},
child: const Text(
'Restore existing wallet',
style: TextStyle(color: Colors.orange),
),
),
const SizedBox(height: 16),
// Uncomment the following lines to add a restore wallet button
// // Restore Wallet Button
// TextButton(
// onPressed: () {
// // TODO: Navigate to restore wallet
// },
// child: const Text(
// 'Restore existing wallet',
// style: TextStyle(color: Colors.orange),
// ),
// ),
const SizedBox(height: 46),

// Footer text
const Text(
'Your wallet, your coins\n100% open-source & open-design',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 12, color: Colors.grey),
),
const SizedBox(height: 24),
const SizedBox(height: 48),
],
),
),
Expand Down