flutter_bamboo_ui_kit 0.0.4 copy "flutter_bamboo_ui_kit: ^0.0.4" to clipboard
flutter_bamboo_ui_kit: ^0.0.4 copied to clipboard

A custom widget made from TLab for TLab.

TLab Bamboo DLS #

A custom widget library created by TLab for TLab.

Documentation #

Section Description
Design System Overview Philosophy, architecture, component hierarchy
Foundation Colors, typography, spacing, shadows
Guides Theme setup, interaction patterns, best practices
Components Individual component documentation

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");
  },
)