Files
2019-01-17 11:10:41 +08:00

34 lines
770 B
Dart

/**
* Created with Android Studio.
* User: 三帆
* Date: 14/01/2019
* Time: 19:02
* email: sanfan.hx@alibaba-inc.com
* tartget: xxx
*/
import 'package:flutter/material.dart';
class RichTextDemo extends StatefulWidget {
_Demo createState() => _Demo();
}
class _Demo extends State<RichTextDemo> {
Widget build(BuildContext context) {
return Container(
color: Color(0xff000000),
width: 750.0,
child: RichText(
text: TextSpan(
text: 'Hello ',
children: <TextSpan>[
TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold, color: Color(0xfffffc42))),
TextSpan(text: ' world!', style: TextStyle(fontStyle: FontStyle.italic)),
],
),
),
);
}
}