I have code simple below
SingleChildScrollView(
child: RichText(
overflow: TextOverflow.clip,
text: TextSpan(
text: '${model.logMain.text}',
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(
text: '${model.value.text}',
style: TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold)),
],
),
),
),
how to add (more) text when variable model.value.text change, please help me