Skip to content

Commit 599d7df

Browse files
authoredJan 31, 2025··
Merge pull request #371 from rodydavis/signals_hooks
bump flutter_hooks version
2 parents 4bf3387 + 4438c10 commit 599d7df

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
 

‎packages/signals_hooks/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.1
2+
3+
- bump flutter_hooks to 0.20.0
4+
15
## 0.1.0
26

37
- Add useSignal

‎packages/signals_hooks/lib/signals_hooks.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ class _SignalHook<T, S extends ReadonlySignal<T>> extends Hook<S> {
4242
_SignalHookState<T, S> createState() => _SignalHookState();
4343
}
4444

45-
class _SignalHookState<T, S extends ReadonlySignal<T>> extends HookState<S, _SignalHook<T, S>> {
45+
class _SignalHookState<T, S extends ReadonlySignal<T>>
46+
extends HookState<S, _SignalHook<T, S>> {
4647
late final _instance = hook.initialData;
4748
void Function()? _cleanup;
4849

‎packages/signals_hooks/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: signals_hooks
22
description: "flutter_hooks bindings for signals"
3-
version: 0.1.0
3+
version: 0.1.1
44
repository: https://github.com/rodydavis/signals.dart
55
homepage: https://dartsignals.dev/
66
documentation: https://dartsignals.dev/
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_hooks: ^0.18.0
15+
flutter_hooks: ^0.20.0
1616
signals_flutter: ^6.0.2
1717

1818
dev_dependencies:

0 commit comments

Comments
 (0)
Please sign in to comment.