Answers for "richtextbox fluter"

0

richtextbox fluter

RichText(
  text: TextSpan(
    text: 'Hello ',
    style: DefaultTextStyle.of(context).style,
    children: <TextSpan>[
      TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold)),
      TextSpan(text: ' world!'),
    ],
  ),
)
Posted by: Guest on May-01-2020

Browse Popular Code Answers by Language