light_carousel 0.0.4 light_carousel: ^0.0.4 copied to clipboard
A Light Carousel package that is forked from carousel pro has been migrated to null safety and some improvements.
Light Carousel #
A Light-Weight Flutter Carousel widget.
Usage #
As simple as using any flutter Widget.
Example:
Add the module to your project pubspec.yaml
:
...
dependencies:
...
light_carousel:
...
And install it using flutter packages get
on your project folder. After that, just import the module and use it:
import 'package:light_carousel/light_carousel.dart';
//...
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Center(
child: SizedBox(
height: 150.0,
width: 300.0,
child: LightCarousel(
boxFit: BoxFit.cover,
autoPlay: true,
animationCurve: Curves.fastOutSlowIn,
animationDuration: Duration(milliseconds: 1000),
dotSize: 6.0,
dotIncreasedColor: Color(0xFFFF335C),
dotBgColor: Colors.transparent,
dotPosition: DotPosition.bottomCenter,
dotVerticalPadding: 10.0,
showIndicator: true,
indicatorBgPadding: 7.0,
images: [
NetworkImage(
'https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage(
'https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
),
),
),
SizedBox(
height: 450.0,
width: 350.0,
child: LightWidget(
animationDuration: const Duration(milliseconds: 1000),
autoplay: true,
animationCurve: Curves.easeInOut,
boxFit: BoxFit.cover,
pages: const [
_Pages(
title: 'first page',
networkImage:
'https://avatars.githubusercontent.com/u/1609975?s=280&v=4'),
_Pages(title: 'second page', assetsImage: 'assets/flutter.jpg'),
_Pages(
title: 'third page',
networkImage:
'https://images.ctfassets.net/23aumh6u8s0i/4TsG2mTRrLFhlQ9G1m19sC/4c9f98d56165a0bdd71cbe7b9c2e2484/flutter'),
],
),
),
],
),
import 'package:light_carousel/light_carousel.dart';
//...
SizedBox(
height: 150.0,
width: 300.0,
child: LightCarousel(
images: [
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
)
),
import 'package:light_carousel/light_carousel.dart';
//...
SizedBox(
height: 200.0,
width: 350.0,
child: LightCarousel(
images: [
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
dotSize: 4.0,
dotSpacing: 15.0,
dotColor: Colors.lightGreenAccent,
indicatorBgPadding: 5.0,
dotBgColor: Colors.purple.withOpacity(0.5),
borderRadius: true,
)
),
import 'package:light_carousel/light_carousel.dart';
//...
SizedBox(
height: 200.0,
width: 350.0,
child: LightCarousel(
images: [
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
dotSize: 4.0,
dotSpacing: 15.0,
dotColor: Colors.lightGreenAccent,
indicatorBgPadding: 5.0,
dotBgColor: Colors.purple.withOpacity(0.5),
borderRadius: true,
moveIndicatorFromBottom: 180.0,
noRadiusForIndicator: true,
)
),
!
import 'package:light_carousel/light_carousel.dart';
//...
SizedBox(
height: 200.0,
width: 350.0,
child: LightCarousel(
images: [
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
dotSize: 4.0,
dotSpacing: 15.0,
dotColor: Colors.lightGreenAccent,
indicatorBgPadding: 5.0,
dotBgColor: Colors.purple.withOpacity(0.5),
borderRadius: false,
moveIndicatorFromBottom: 180.0,
noRadiusForIndicator: true,
overlayShadow: true,
overlayShadowColors: Colors.white,
overlayShadowSize: 0.7,
)
),
import 'package:light_carousel/light_carousel.dart';
//...
SizedBox(
height: 200.0,
width: 350.0,
child: LightCarousel(
images: [
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'),
NetworkImage('https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'),
ExactAssetImage("assets/flutter.jpg"),
],
showIndicator: false,
borderRadius: false,
moveIndicatorFromBottom: 180.0,
noRadiusForIndicator: true,
overlayShadow: true,
overlayShadowColors: Colors.white,
overlayShadowSize: 0.7,
)
),
Parameters and Values #
images #
All the images on this Carousel. Type: List
animationCurve #
The transition animation timing curve Default value: Curves.ease Type: Curve
Values
- Curves.linear;
- Curves.fastOutSlowIn;
- Curves.ease;
- Curves.bounceOut;
- Curves.bounceIn;
- Curves.bounceInOut;
- Curves.decelerate;
- Curves.ease;
- Curves.easeIn;
- Curves.easeInOut;
- Curves.easeOut;
- Curves.elasticIn;
- Curves.elasticInOut;
- Curves.elasticOut;
animationDuration #
The transition animation duration Type: Duration Default value: 300ms.
dotSize #
The base size of the dots Type: double Default value: 8.0
dotIncreaseSize #
The increase in the size of the selected dot Type: double Default value: 2.0
dotSpacing #
The distance between the center of each dot Type: double Default value: 25.0
dotColor #
The Color of each dot Type: Color Default value: Colors.white
dotBgColor #
The background Color of the dots Type: Color Default value: Colors.grey[800].withOpacity(0.5)
showIndicator #
Enable or Disable the indicator (dots) Type: bool Default value: true
indicatorBgPadding #
Padding Size of the background Indicator Type: double Default value: 20.0
boxFit #
How to show the images in the box Type: BoxFit Default value: cover
Values
- BoxFit.cover;
- BoxFit.fitWidth;
- BoxFit.fitHeight;
- BoxFit.scaleDown;
- BoxFit.fill;
- BoxFit.contain;
- BoxFit.none;
borderRadius #
Enable/Disable radius Border for the images Type: bool Default value: false
radius #
Border Radius of the images Type: Radius Default value: Radius.circular(8.0)
moveIndicatorFromBottom #
Move the Indicator From the Bottom Type: double Default value: 0.0
noRadiusForIndicator #
Remove the radius bottom from the indicator background Type: bool Default value: false
overlayShadow #
Enable/Disable Image Overlay Shadow Type: bool Default value: false
overlayShadowColors #
Choose the color of the overlay Shadow color Type: Color Default value: Colors.grey[800]
overlayShadowSize #
Choose the size of the Overlay Shadow, from 0.0 to 1.0 Type: double Default value: 0.5
autoplay #
Enable/Disable autoplay carousel Type: bool Default value: true
autoplayDuration #
The autoplay transition duration Type: Duration Default value: 3s
Credits #
This project is made possible by the community surrounding it and especially the wonderful people and projects listed in this document.
Contributing #
Feel free to help!