ui_bits

Creator: coderz1093

Last updated:

0 purchases

ui_bits Image
ui_bits Images
Add to Cart

Description:

ui bits

ui_bits #

A UI components(bits) library
Getting Started #
Register Theme #
var themeFactory = ThemeFactory();

return MaterialApp(
title: 'Catalog',
theme: themeFactory.makeBlueTheme(),
home: themeFactory.makeHome(
child: Catalog(title: 'Flutter Components Catalog'),
),
);
copied to clipboard
Paddings #

// Small uses BitSizes.small from theme, default: 10.0
BitSmallPadding(
options: BitEdgeInsetsOptions.top,
child: Text('some text'),
);

copied to clipboard
Options

top: BitEdgeInsetsOptions.top
bottom: BitEdgeInsetsOptions.bottom
left: BitEdgeInsetsOptions.left
right: BitEdgeInsetsOptions.right
all: BitEdgeInsetsOptions.all
none: BitEdgeInsetsOptions.none
combine:

// sums the given insets, in this case left and right.
BitEdgeInsetsOptions.combine([
BitEdgeInsetsOptions.left,
BitEdgeInsetsOptions.right,
]);
copied to clipboard

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.