ccl_ui 0.6.0 ccl_ui: ^0.6.0 copied to clipboard
CeylonCodeLabs UI Extensions
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'),
],
),
],
),
Contributing #
Any bug or new feature required, feel free to file a PR.