easy_separator 1.0.1 copy "easy_separator: ^1.0.1" to clipboard
easy_separator: ^1.0.1 copied to clipboard

A new Flutter package for create columns and rows with separators.

Easy Separator #

A Flutter package for create columns and rows with separators

All the snippets are from the example project.

Easy Separated Column #

Separated Column
EasySeparatedColumn(
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.center,
        separatorBuilder: (BuildContext context, int index) {
          return const Text('<Easy Separator>',);
        },
        children: [
          Container(height: 20, color: Colors.purple),
          Container(height: 20, color: Colors.lightBlue),
          Container(height: 20, color: Colors.green),
          Container(height: 20, color: Colors.yellow),
          Container(height: 20, color: Colors.orange),
          Container(height: 20, color: Colors.red),
        ],
      )

Easy Separated Row #

Separated Row
EasySeparatedRow(
              separatorBuilder: (BuildContext context, int index) {
                return const RotatedBox(
                    quarterTurns: 3,
                    child: Text(
                      '<Easy Separator>',
                    ));
              },
              children: [
                Container(width: 20, color: Colors.purple),
                Container(width: 20, color: Colors.lightBlue),
                Container(width: 20, color: Colors.green),
                Container(width: 20, color: Colors.yellow),
                Container(width: 20, color: Colors.orange),
                Container(width: 20, color: Colors.red),
              ],
            )
5
likes
130
pub points
85%
popularity

Publisher

unverified uploader

A new Flutter package for create columns and rows with separators.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on easy_separator