Skip to Content
WidgetsStreamingText

StreamingText

StreamingText is the simplest live text widget for chunk-by-chunk output.

StreamingText
StreamingText terminal preview
Terminal preview of StreamingText

Smallest example

let output = StreamingText::new(self.current_output.clone()).build();

Use StreamingText when

  • output keeps growing over time
  • you are showing an in-progress assistant reply or log stream
  • you do not need structured transcript entries yet

Common combinations

  • StreamingText + ScrollView
  • StreamingText + SessionTranscript
Last updated on