easy_scroll_animation 1.0.2 easy_scroll_animation: ^1.0.2 copied to clipboard
Easy Scroll Animation lets you optionally hide and animation Topbar (e.g AppBar), BottomBar (e.g BottomNavigationBar)
Easy Scroll Animation #
Easy Scroll Animation lets you optionally (Size/Scale/Fade) your Topbar or Bottom Bar #
You can now optionally hide TopBar or BottomBar, along with that You can set your Animation Type (default AnimationType.size)
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(
topCurve: Curves.linear,
bottomCurve: Curves.bounceOut,
bottomAnimationDuration: const Duration(seconds: 1),
topAnimationDuration: const Duration(seconds: 1),
animationTopType: AnimationType.scale,
animateBottomWidget: false,
bottomWidget: BottomNavigationBar(
items: const [
BottomNavigationBarItem(
label: "Home",
icon: Icon(
Icons.home,
)),
BottomNavigationBarItem(
label: "Location", icon: Icon(Icons.location_city)),
],
),
topWidget: AppBar(title: Text("Welcome")),
child: ListView.builder(
shrinkWrap: true,
padding: const EdgeInsets.all(0),
itemBuilder: (_, index) => Text("hi $index"),
itemCount: 500,
),
),
Paramaters
Scrolling Content
- child (required)
Bottom Bar Widget
- bottomWidget (optional)
- animationType (default: AnimationType.size)
- bottomAnimationDuration (default: 500milliseconds)
- bottomCurve (defualt: linear)
Top Bar Widget
- topWidget (optional)
- animationType (default: AnimationType.size)
- topAnimationDuration (default: 500milliseconds)
- topCurve (defualt: linear)