ccl_ui 0.2.3 copy "ccl_ui: ^0.2.3" to clipboard
ccl_ui: ^0.2.3 copied to clipboard

CeylonCodeLabs UI Extensions

This package provide basic ui helper functions, widgets and elements for every day development

Features #

  1. UI helpers
  2. 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.