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

A customizable blendable slider for your Flutter app.

🌀 BendableSlider #

A custom, bendable curved slider widget for Flutter that delivers a delightful user interaction. Great for onboarding screens, confirmation sliders, or fun UI interactions.


✨ Features #

  • 🎯 Bendable curved slider
  • 🌈 Customizable gradient foreground and solid background
  • 📝 Optional title (fixed or dynamic)
  • 🧩 Easy to integrate and style

📦 Installation #

Add this to your pubspec.yaml:

💡 Example #

Here's a minimal example of how to use the BendableSlider widget:

dependencies:
  bendable_slider: ^0.0.1
BendableSlider(
            backgroundTrackColor: Colors.grey.shade300,
            foregroundGradiantColor: [Colors.purple, Colors.pink],
            title: 'Slide to Unlock',
            titleTextStyle: const TextStyle(
              fontSize: 18,
              color: Colors.black87,
              fontWeight: FontWeight.bold,
            ),
            isTitleFixed: true,
            initialProgress: 0.2,
            onSlideComplete: () {
              ScaffoldMessenger.of(context).showSnackBar(
                const SnackBar(content: Text('🎉 Slide Completed!')),
              );
            },
          ),





4
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable blendable slider for your Flutter app.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on bendable_slider