tap_to_expand 0.1.7 copy "tap_to_expand: ^0.1.7" to clipboard
tap_to_expand: ^0.1.7 copied to clipboard

outdated

This package is to build expandable widget fast and easy with few lines and you can customize it to whatever!.

pub package This package is to build expandable widget fast and easy with few lines and you can customize it to whatever!

Features #

  • include your content easliy
  • you can make it scroll by setting scrollable to true
  • some beautiful animation

Getting started #

To use this plugin, add tap_to_expand as a dependency in your pubspec.yaml file.


Package photo

Usage #

Here is How to use it, You can find Package API

Center(
        child: TapToExpand(
          content: Column(
            children: <Widget>[
              for (var i = 0; i < 20; i++)
                Text(
                  "data $i",
                  style: const TextStyle(color: Colors.white, fontSize: 20),
                ),
            ],
          ),
          title: const Text(
            'TapToExpand',
            style: TextStyle(
              color: Colors.white,
              fontSize: 20,
            ),
          ),
          onTapPadding: 10,
          closedHeight: 70,
          scrollable: true,
          borderRadius: 10,
          openedHeight: 200,
        ),
      ),
70
likes
0
pub points
86%
popularity

Publisher

unverified uploader

This package is to build expandable widget fast and easy with few lines and you can customize it to whatever!.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on tap_to_expand