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

A custom widget made from TLab for TLab.

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