uc_ui_component 0.0.2
uc_ui_component: ^0.0.2 copied to clipboard
A flutter plugin for uc_ui_component
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(),