Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.38 KB

README.md

File metadata and controls

52 lines (40 loc) · 1.38 KB

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.