sequential_slide_view 0.0.1 copy "sequential_slide_view: ^0.0.1" to clipboard
sequential_slide_view: ^0.0.1 copied to clipboard

Flutter package for sequential slide-up animation

sequential_slide_view #


example

Usage #

SequentialSlideView() is not scrollable widget. If you want to make this scrollable, You can wrap this widget in some scrollable widgets.

  • You can use bool notUseAnimation = false parameter. If this value is true, All animations will be disabled. This means that all widgets returned by itemBuilder will be rendered on the screen at once.

A simple usage example:

import 'package:sequential_slide_view/sequential_slide_view.dart';

SequentialSlideView(
  itemCount: 3,
  /// *** You can customize your widget with itemBuilder ***
  itemBuilder: (index) => Text('sample no.${index.toString()}'),
)

Params:

SequentailSlideView(
  ...
  itemBtm = 15.0,
  notUseAnimation = false,
  duration = 500,
  curve = Curves.fastOutSlowIn,
  startDelay = 1000,
  intervalDelay = 500,
  slideHeight = 20, // slide-up animation height
  onEnd = (){}, // is called after all animations have completed
)

4
likes
140
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for sequential slide-up animation

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on sequential_slide_view