hidable 1.0.5 copy "hidable: ^1.0.5" to clipboard
hidable: ^1.0.5 copied to clipboard

Widget, that can make any static located widget hidable (scroll to hide).

v1.0.5 - 25/08/2023 #

  • Resolved #21
  • Deprecate the [wOpacity] property and add new [enableOpacityAnimation] instead.

v1.0.4 - 14/05/2023 #

  • Migrated to Flutter 3.10 and Dart 3

v1.0.3 - 03/09/2022 #

v1.0.2 - 18/01/2022 #

  • Resolved #6

v1.0.1 - 10/11/2021 #

  • Resolved: #3 and #4
  • Updated documentation comments and pub points of package.

v1.0.0 - 09/11/2021 #

Package Logo

The very first version of the Hidable package! So that can add scroll-to-hide effect to any static located widget - AppBar, BottomNavigationBar, etc.

Overview

Package Example Overview

Scrollable widget

ListView.separated(
  // General scroll controller which makes bridge between
  // This ListView and Hidable widget.
  controller: scrollController,
  itemCount: colors.length,
  itemBuilder: (_, i) => Container(
     height: 50,
     color: colors[i].withOpacity(.6),
  ),
  separatorBuilder: (_, __) => const SizedBox(height: 10),
),

Static located hidable widget

Hidable(
  controller: scrollController,
  wOpacity: true, // As default it's true.
  size: 56, // As default it's 56.
  child: BottomNavigationBar(...),
),
103
likes
140
pub points
93%
popularity

Publisher

verified publishertheiskaa.com

Widget, that can make any static located widget hidable (scroll to hide).

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on hidable