An open API service indexing awesome lists of open source software.

https://github.com/codefoxlk/easy_separator

A new Flutter package project for create columns and rows with separators.
https://github.com/codefoxlk/easy_separator

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# Easy Separator

A Flutter package for create columns and rows with separators

All the snippets are from the [example project](https://github.com/CodeFoxLk/easy_separator).

**Easy Separated Column**
----
Separated Column

EasySeparatedColumn(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
separatorBuilder: (BuildContext context, int index) {
return const Text('',);
},
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(
'',
));
},
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),
],
)