mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
7 lines
161 B
Dart
7 lines
161 B
Dart
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
void Function() useForceUpdate() {
|
|
final state = useState(null);
|
|
return () => state.notifyListeners();
|
|
}
|