FilledStacks / FilledStacks/flutter-tutorials

Hover effects tutorial deprecated.

Open
#107 1 comment 1 reaction 0 assignees View on GitHub
Dominant language
Dart
Stars
4.8k
Forks
1.7k
PR merge metrics
No merged PRs in 30d

Description

Love ya man, but your hover tutorial should be put to rest. Hover pointers can now be set simply:

```
import 'package:flutter/rendering.dart';

FocusableActionDetector(
mouseCursor: SystemMouseCursors.click,
child: GestureDetector(
onTap: () {
Navigator.popUntil(context, ModalRoute.withName('/'));
},
child: Image.asset(
'filledstacksrocks.png',
height: 48,
),
),
),

```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.