Transcript - Flutter
With Flutter, you can use Text
to display written text. Make sure to wrap the Text
widget in a SingleChildScrollView
and to set the overflow parameter to TextOverflow.visible
. Also, the softwrap
parameter needs to be set to true to prevent the text from overflowing outside its container.
SingleChildScrollView(
child: Text(
'Appt transcript',
softWrap: true,
overflow: TextOverflow.visible,
),
)