flutter_expandable_widget 1.0.5 copy "flutter_expandable_widget: ^1.0.5" to clipboard
flutter_expandable_widget: ^1.0.5 copied to clipboard

An expandable widget with the easy control expands and closes

flutter_expandable_widget #

An expandable widget with the easy control expands and closes

expandable_widget

Getting Started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  flutter_expandable_widget: ^1.0.5

Import it:

import 'package:expandable_widget/expandable_widget.dart';

Usage Examples #

ExpandableWidget #

ExpandableWidget(
    title: const Padding(
      padding: EdgeInsets.only(left: 10),
      child: Text('Center'),
    ),
    decoration: const BoxDecoration(color: Color(0xFF81C784)),
    childrenPadding: const EdgeInsets.only(top: 50),
    children: const [
      Text('S'),
      Text('M'),
      Text('L'),
      Text('XL'),
    ],
)

Setting your trailing widget and rotation's duration、turns #

ExpandableWidget(
  //...
  trailing: const Icon(Icons.arrow_forward),
  trailingStartTurns: 1,
  trailingEndTurns: 0.75,
  trailingDuration: const Duration(milliseconds: 350),
)

Setting title and trailing position #

//trailing is to the left of title
trailingPosition: TrailingPosition.left,
//trailing is to the right of title
trailingPosition: TrailingPosition.right,

Setting expansion direction #

//Title is on top of content
expansionDirection: ExpansionDirection.expandDown,
//content is on top of Title
expansionDirection: ExpansionDirection.expandUp,

ExpandableWidget.content #

ExpandableWidget.content(
    //...content replaces children
    content: Column(
      children: const [
        Text('S'),
        Text('M'),
        Text('L'),
        Text('XL'),
      ],
    ),
)
8
likes
150
points
172
downloads

Publisher

verified publisherstevenhsiao.dev

Weekly Downloads

An expandable widget with the easy control expands and closes

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_expandable_widget