mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
8 lines
249 B
Dart
8 lines
249 B
Dart
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
void Function() useForceUpdate() {
|
|
final state = useState(null);
|
|
// ignore: invalid_use_of_protected_member, invalid_use_of_visible_for_testing_member
|
|
return () => state.notifyListeners();
|
|
}
|