hoverables 0.1.0 copy "hoverables: ^0.1.0" to clipboard
hoverables: ^0.1.0 copied to clipboard

A collection of widgets to build hover interactions easily.

Hover Builder #

Easiest and cleanest way to build hover effects in Flutter. This package provides a simple way to build hover effects in Flutter without dealing with managing hover state explicitly.

Pub Package Code Quality

Demo: Playground

Getting Started #

  1. Add as a dependency in your project's pub spec.yaml
dependencies:
hoverables: <latest_version>
  1. Import library into your code.
import 'package:hoverables/hoverables.dart';

Usage #

Using HoverBuilder #

HoverBuilder allows you to build hover effects easily. It provides a builder function that gives you the current hover state of the widget.

HoverBuilder(
  builder: (context, hovering, child) {
    return AnimatedScale(
      duration: const Duration(milliseconds: 200),
      scale: hovering ? 1.35 : 1,
      child: child,
    );
  },
  child: GestureDetector(
    onTap: onTap,
    child: Container(
      width: 200,
      height: 200,
      alignment: Alignment.center,
      decoration: BoxDecoration(
        color: Theme.of(context).colorScheme.primaryContainer,
        borderRadius: BorderRadius.circular(20),
      ),
      child: const Text('Hover Scale'),
    ),
  ),
);

Checkout example for more examples.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

Liked this package?

Show some love and support by starring the repository.

Or You can

Buy Me A Coffee

License #

Copyright (c) 2024, Birju Vachhani
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
   contributors may be used to endorse or promote products derived from
   this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7
likes
150
points
16
downloads

Publisher

verified publisherbirju.dev

Weekly Downloads

A collection of widgets to build hover interactions easily.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on hoverables