数据类

[toc]

数据类

为了统一,各数据类(包含宏)分别使用如下:

一、颜色

暂无

二、TextStyle

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import 'package:flutter_effect/flutter_effect.dart';

return Column(
children: <Widget>[
Text(
'Bold',
style: BoldTextStyle(fontSize: 17, color: Colors.red), // bold
),
Text(
'Medium',
style: MediumTextStyle(fontSize: 17, color: Colors.red), // medium
),
],
);