Tag: Flutter Span Text

  • Flutter Span Text, how it works in web app

    Firstly, a span of text in flutter is immutable. What does that mean? We can use them as a constant property. Secondly, the span of text represents a TextSpan object which we can style with the help of a TextStyle widget. Basically the TextSpan widget has the style property that expects the TextStyle widget.This style…