0 purchases
ccl ui
This package provide basic ui helper functions, widgets and elements for every day development
Features #
UI helpers
Common widgets
Getting started #
First go through package API doc. Import necessary classes and utilize.
Usage #
For an example we have widget call CCLTable which will draw a table.
Likewise there are multiple widgets that will help on your daily developments.
CCLTable(
rows: [
CCLTableRow(
cells: [
CCLTableCell(text: 'Column 1'),
CCLTableCell(text: 'Column 2'),
],
),
CCLTableRow(
decoration: BoxDecoration(color: Colors.grey.shade200),
cells: [
CCLTableCell(text: 'Row 2, Column 1'),
CCLTableCell(text: 'Row 2, Column 2'),
],
),
],
),
copied to clipboard
Contributing #
Any bug or new feature required, feel free to file a PR.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.