ui_helper

Creator: coderz1093

Last updated:

0 purchases

ui_helper Image
ui_helper Images
Add to Cart

Description:

ui helper

UI Helper #





UI Helpers to speed boost your development time! These will help you make your app responsive and also provides easy way to create Text, Button and Text Field Widgets.
Demo #


Installation #
pubspec.yaml:
dependencies:
ui_helper: ^1.1.0
copied to clipboard
Example #
import 'package:flutter/material.dart';
import 'package:ui_helper/ui_helper.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'UI Helper',
home: Scaffold(
body: ListView(
padding: const EdgeInsets.symmetric(horizontal: 25, vertical: 30),
children: [
TextWidget.headingOne('Design System'),
verticalSpaceSmall,
Divider(),
verticalSpaceSmall,
...buttonWidgets,
...textWidgets,
...inputFields,
],
),
),
);
}
}

List<Widget> get textWidgets => [
TextWidget.headline('Text Styles'),
verticalSpaceMedium,
TextWidget.headingOne('Heading One'),
verticalSpaceMedium,
TextWidget.headingTwo('Heading Two'),
verticalSpaceMedium,
TextWidget.headingThree('Heading Three'),
verticalSpaceMedium,
TextWidget.headline('Headline'),
verticalSpaceMedium,
TextWidget.subheading('This will be a sub heading to the headling'),
verticalSpaceMedium,
TextWidget.body('Body Text that will be used for the general body'),
verticalSpaceMedium,
TextWidget.caption(
'This will be the caption usually for smaller details'),
verticalSpaceMedium,
];

List<Widget> get buttonWidgets => [
TextWidget.headline('Buttons'),
verticalSpaceMedium,
TextWidget.body('Normal'),
verticalSpaceSmall,
ButtonWidget(
title: 'SIGN IN',
),
verticalSpaceSmall,
TextWidget.body('Disabled'),
verticalSpaceSmall,
ButtonWidget(
title: 'SIGN IN',
disabled: true,
),
verticalSpaceSmall,
TextWidget.body('Busy'),
verticalSpaceSmall,
ButtonWidget(
title: 'SIGN IN',
busy: true,
),
verticalSpaceSmall,
TextWidget.body('Outline'),
verticalSpaceSmall,
ButtonWidget.outline(
title: 'Select location',
leading: Icon(
Icons.send,
),
),
verticalSpaceMedium,
];

List<Widget> get inputFields => [
TextWidget.headline('Input Field'),
verticalSpaceSmall,
TextWidget.body('Normal'),
verticalSpaceSmall,
InputFieldWidget(
controller: TextEditingController(),
placeholder: 'Enter Password',
),
verticalSpaceSmall,
TextWidget.body('Leading Icon'),
verticalSpaceSmall,
InputFieldWidget(
controller: TextEditingController(),
leading: Icon(Icons.reset_tv),
placeholder: 'Enter TV Code',
),
verticalSpaceSmall,
TextWidget.body('Trailing Icon'),
verticalSpaceSmall,
InputFieldWidget(
controller: TextEditingController(),
trailing: Icon(Icons.clear_outlined),
placeholder: 'Search for things',
),
];

copied to clipboard
License #
MIT

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.