0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.