Skip to content

Commit

Permalink
feat(mouseCursor): set click cursor on tiles (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrFLEURY authored Feb 4, 2022
1 parent 6c00d29 commit 941ecc6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/view/widgets/tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class _TileState extends State<Tile> with TickerProviderStateMixin {
return MouseRegion(
onEnter: (_) => _hoverAnimationController.forward(),
onExit: (_) => _hoverAnimationController.reverse(),
cursor: SystemMouseCursors.click,
child: ScaleTransition(
scale: _hoverAnimation,
child: GestureDetector(
Expand Down

0 comments on commit 941ecc6

Please sign in to comment.