Skip to content

Commit 17f73b2

Browse files
authored
Adds send and broadcast support to the demo wallet (#82)
1 parent 9c92303 commit 17f73b2

10 files changed

Lines changed: 1362 additions & 1 deletion

File tree

bdk_demo/lib/core/router/app_router.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import 'package:flutter_riverpod/misc.dart';
22
import 'package:go_router/go_router.dart';
33
import 'package:bdk_demo/features/home/home_page.dart';
44
import 'package:bdk_demo/features/receive/receive_page.dart';
5+
import 'package:bdk_demo/features/send/send_page.dart';
56
import 'package:bdk_demo/features/transactions/transaction_detail_page.dart';
67
import 'package:bdk_demo/features/transactions/transactions_list_page.dart';
78
import 'package:bdk_demo/features/shared/widgets/placeholder_page.dart';
@@ -78,7 +79,7 @@ GoRouter createRouter(RouterRead read) => GoRouter(
7879
path: AppRoutes.send,
7980
name: 'send',
8081
redirect: (context, state) => _sendRouteRedirect(read),
81-
builder: (context, state) => const PlaceholderPage(title: 'Send'),
82+
builder: (context, state) => const SendPage(),
8283
),
8384
GoRoute(
8485
path: AppRoutes.transactionHistory,

0 commit comments

Comments
 (0)