text_span_field 1.0.0 text_span_field: ^1.0.0 copied to clipboard
Flutter custom text style input box enables you to display different styles of text in textfield, such as topic @ user effect
text_span_field #
Flutter自定义文本样式输入框,可以让你在TextField中显示不同样式的文本,例如 #话题# @用户 效果
Getting Started #
Flutter #
text_span_field: 1.0.0
Android 端集成 #
无需额外配置,已内部打入混淆配置
IOS #
无需额外配置
效果图 #
使用 #
TextSpanField(
controller: TextEditingController(
text: "这是一条测试信息,你们看他的颜色",
),
rangeStyles: [
RangeStyle(
range: TextRange(start: 0, end: 1),
style: TextStyle(color: Color(0xFF5BA2FF)),
),
RangeStyle(
range: TextRange(start: 3, end: 4),
style: TextStyle(color: Color(0xFF9C7BFF)),
),
],
),