TLab Bamboo DLS

A custom widget library created by TLab for TLab.

Features

The package provides the following components and utilities:

Getting started

Add the package to your pubspec.yaml:

dependencies:
  flutter_bamboo_ui_kit:

Usage

Example usage of a Text Field:

TTextField(
  label: "Full Name",
  hintText: "Enter your name",
  onChanged: (value) {
    print("Name: $value");
  },
)