Skip to content

devdanpre/flutter_slidercarousel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slider Carousel

A new slider carousel widget with custom scaling and item spacing

Example

SliderCarousel(
  itemCount: 5,
  itemBuilder: (context, idx) {
    return Container(
      decoration: BoxDecoration(
        shape: BoxShape.circle,
        color: Colors.blue,
      ),
    );
  },
  offsetCenter: 0.75,
  scaleCenter: 1.25,
  itemWidth: 150,
  itemHeight: 150,
);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages