cursor on hover of wallet

This commit is contained in:
ryleedavis 2022-11-15 14:54:12 -07:00
parent a57651a766
commit 824d803678

View file

@ -53,7 +53,10 @@ class _MyWalletsState extends ConsumerState<MyWallets> {
height: 20,
),
const Expanded(
child: WalletSummaryTable(),
child: MouseRegion(
cursor: SystemMouseCursors.click,
child: WalletSummaryTable(),
),
),
],
),