light constant
LabelTheme
const light
Predefined light theme for labels.
Implementation
static const light = LabelTheme(
textStyle: TextStyle(
color: Color(0xFF333333),
fontSize: 12.0,
fontWeight: FontWeight.w500,
),
backgroundColor: Color(0xFFFBFBFB),
border: Border.fromBorderSide(
BorderSide(color: Color(0xFFDDDDDD), width: 1.0),
),
borderRadius: BorderRadius.all(Radius.circular(4.0)),
padding: EdgeInsets.symmetric(horizontal: 8, vertical: 2),
offset: 0.0,
);