Skip to content

Commit

Permalink
Publish forui_hooks 0.7.0+1
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Dec 4, 2024
1 parent 3d60dd4 commit b3dbf1a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 4 additions & 0 deletions forui_hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.7.0+1

Updated the README file.

## 0.7.0

Initial release!
2 changes: 1 addition & 1 deletion forui_hooks/lib/src/popover_controller_hook.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _PopoverControllerHook extends Hook<FPopoverController> {
class _PopoverControllerHookState extends HookState<FPopoverController, _PopoverControllerHook> {
late final FPopoverController _controller = FPopoverController(
vsync: hook.vsync,
animationDuration: hook.animationDuration,
duration: hook.animationDuration,
);

@override
Expand Down
2 changes: 1 addition & 1 deletion forui_hooks/lib/src/tooltip_controller_hook.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _TooltipControllerHook extends Hook<FTooltipController> {
class _TooltipControllerHookState extends HookState<FTooltipController, _TooltipControllerHook> {
late final FTooltipController _controller = FTooltipController(
vsync: hook.vsync,
animationDuration: hook.animationDuration,
duration: hook.animationDuration,
);

@override
Expand Down
4 changes: 0 additions & 4 deletions forui_hooks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ dev_dependencies:
flutter_test:
sdk: flutter

dependency_overrides:
forui:
path: ../forui

flutter:

import_sorter:
Expand Down

0 comments on commit b3dbf1a

Please sign in to comment.