Last updated:
0 purchases
ariya
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
copied to clipboard
Usage #
Sample SeekBar #
SeekBar(
controller: controller,
radius: const Radius.circular(5),
thumpColor: Colors.yellow,
thumpRadius: const Radius.circular(3),
)
copied to clipboard
Sample Shimmer #
Shimmer(
child: Container(width: 50, height: 10, color: Colors.blue),
)
copied to clipboard
Sample PageViewIndicator #
PageViewIndicator(
size: const Size(200, 20),
controller: pageController,
count: items.length,
indicatorSmooth: true,
indicatorSelectedColor: Colors.blue,
indicatorRadius: Radius.circular(6),
)
copied to clipboard
Sample ProgressBallWaveIndicator #
ProgressBallWaveIndicator(
color: Colors.primaries[9],
)
copied to clipboard
Sample ProgressCircleWaveIndicator #
ProgressCircleWaveIndicator(
color: Colors.primaries[9],
)
copied to clipboard
Sample ProgressCircularDotsIndicator #
ProgressCircularDotsIndicator(
color: Colors.primaries[9],
)
copied to clipboard
Sample ProgressCircularIndicator #
ProgressCircularIndicator(
color: Colors.primaries[9],
)
copied to clipboard
Sample ProgressLineWaveIndicator #
ProgressLineWaveIndicator(
color: Colors.primaries[9],
)
copied to clipboard
Sample ProgressLinearIndicator #
ProgressLinearIndicator(
progress: 0.6,
)
copied to clipboard
Additional information #
Home page
Issues
You can help us to keep my open source projects up to date!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.