bld_ui_kit 0.0.2
bld_ui_kit: ^0.0.2 copied to clipboard
A framework for the underlying UI space.
This is a simple encapsulation library of the base UI space, which is easy to use for common UI development.
Usage #
文本(Text) #
BText('text', textColor:Colors.white)
按钮(Button) #
BLDButton(
text: '按钮标题',
image: Icon(Icons.ac_unit, size: 20),
padding: EdgeInsets.all(10),
radius: 10,
backgroundColor: Colors.deepOrangeAccent,
isExpand: false,
layoutStyle: ButtonLayoutStyle.landscapeLeft,
widgetSpace: 10,
onPressed: () {})
会话(Dialog) #
showBLDCustomDialog(context, customStyle: (style){
style.titleColor = Colors.blue;
return style;
});