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,8 +53,11 @@ class _MyWalletsState extends ConsumerState<MyWallets> {
height: 20, height: 20,
), ),
const Expanded( const Expanded(
child: MouseRegion(
cursor: SystemMouseCursors.click,
child: WalletSummaryTable(), child: WalletSummaryTable(),
), ),
),
], ],
), ),
); );