import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home:Scaffold(
appBar: AppBar(title:Text('文本控件的使用'),),
body:HomeContent())
);
}
}
class HomeContent extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: ZText('我的文本', Colors.red, 20, 1)
);
}
}
class ZText extends StatelessWidget {
final String str;
final Color color;
final double fontSize;
final double fontWeight;
ZText(this.str, this.color, this.fontSize, this.fontWeight);
@override
Widget build(BuildContext context) {
return Text(str,
style: TextStyle(
color: color,
fontSize: fontSize,
fontWeight: fontWeight == 1 ? FontWeight.w400 : FontWeight.w600)
);
}
}
4.Flutter封装Text
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一、目录结构介绍 需要注意以下几个文件夹,其他的暂时不用理会 文件夹作用androidandroid 平台相关代码...
- 一、Flutter Text 组件 二、Container 组件 说明 : border:Border.all()...
- demo 地址: https://github.com/iotjin/jh_flutter_demo 使用版本 包...