uc_ui_component

A Flutter plugin for building reusable UI components like form fields, buttons, loaders, and more.

Features

  • Easily stylable
  • Supports validation and error messages
  • Reusable across forms

Usage

import 'package:uc_ui_component/uc_ui_component.dart';

CustomFieldBox(
  labelText: 'Your Name',
  controller: TextEditingController(),
  isDropdown: false,
)

CustomButton(
   onPressed: () {},
   buttonTextValue: "Submit",
   isButtonDisabled: false,
   buttonTextFont: 'NunitoSansRegular',
),

CustomText(
   text: 'Rushi',
   textAlign: TextAlign.left,
),

CustomLoader(),

Libraries

uc_ui_component