FilledStacks / FilledStacks/flutter-tutorials
Hover effects tutorial deprecated.
Open
- 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.