clean_accordions 1.0.0 clean_accordions: ^1.0.0 copied to clipboard
Flutter package to allow developer to use Accordion in their Flutter app.
Accordion #
This Flutter package allows developer to use Accordion that can be customized easily
Features #
- Easily create accordion-style UI in your Flutter app.
- Customizable appearance to match your app's design.
- Support for expanding/collapsing content.
Usage #
Here is the Simple use of Accordion:
Accordion(
title: const Text('Hey there'),
subTitle: const [
Text('Welcome'),
Text('Back')
]
)