ariya 1.1.3
ariya: ^1.1.3 copied to clipboard
A collection of widgets for flutter (components, effects, progress and page indicator ...)
Ariya
A collection of widgets for flutter (components, effects, progress and page indicator ...) #
Features #
Components #
- SeekBar
- Shimmer
Page indicator #
- PageViewIndicator
Progress #
- ProgressBallWaveIndicator
- ProgressCircleWaveIndicator
- ProgressCircularDotsIndicator
- ProgressCircularIndicator
- ProgressLineWaveIndicator
- ProgressLinearIndicator
Effect #
- EffectFireworks
- EffectConfetti
Getting started #
flutter pub add ariya
Usage #
Sample SeekBar #
SeekBar(
controller: controller,
radius: const Radius.circular(5),
thumpColor: Colors.yellow,
thumpRadius: const Radius.circular(3),
)
Sample Shimmer #
Shimmer(
child: Container(width: 50, height: 10, color: Colors.blue),
)
Sample PageViewIndicator #
PageViewIndicator(
size: const Size(200, 20),
controller: pageController,
count: items.length,
indicatorSmooth: true,
indicatorSelectedColor: Colors.blue,
indicatorRadius: Radius.circular(6),
)
Sample ProgressBallWaveIndicator #
ProgressBallWaveIndicator(
color: Colors.primaries[9],
)
Sample ProgressCircleWaveIndicator #
ProgressCircleWaveIndicator(
color: Colors.primaries[9],
)
Sample ProgressCircularDotsIndicator #
ProgressCircularDotsIndicator(
color: Colors.primaries[9],
)
Sample ProgressCircularIndicator #
ProgressCircularIndicator(
color: Colors.primaries[9],
)
Sample ProgressLineWaveIndicator #
ProgressLineWaveIndicator(
color: Colors.primaries[9],
)
Sample ProgressLinearIndicator #
ProgressLinearIndicator(
progress: 0.6,
)
Additional information #
You can help us to keep my open source projects up to date!