Easy Scroll Animation

Easy Scroll Animation is very simple to use

f3af61ac-539a-4ca9-935e-7bafe407d542

Installation

Step 1:

easy_scroll_animation: <latest-version>

Step 2:

import 'package:easy_scroll_animation/easy_scroll_animation.dart';

Step 3: How to use

EasyAnimatedScroll(
        bottomWidget: //(Optional) e.g: BottomNavigationBar , bottom Widget that you want to hide on scroll
        topWidget: topWidget  //(Optional) e.g Appbar , top widget that you want to hide on scroll
        child: yourScrollingWidget //e.g: ListView/ListView.builder or any other scrolling widget
    ),
Paramaters

Scrolling Content

  • child (required)

Bottom Bar Widget

  • bottomWidget (optional)
  • bottomAnimationDuration (default: 500milliseconds)
  • bottomCurve (defualt: linear)

Top Bar Widget

  • topWidget (optional)
  • topAnimationDuration (default: 500milliseconds)
  • topCurve (defualt: linear)