getParagraph method
- String text
Returns a [ui.Paragraph] object for the given text. [text] is the text to create the paragraph for. Returns a [ui.Paragraph] object.
Implementation
ui.Paragraph getParagraph(String text) {
if (text.length == 1) text = "0$text";
ui.ParagraphBuilder builder = ui.ParagraphBuilder(
ui.ParagraphStyle(fontSize: 30.0, textAlign: TextAlign.right))
..pushStyle(ui.TextStyle(color: Colors.black))
..addText(text);
final ui.Paragraph paragraph = builder.build()
..layout(ui.ParagraphConstraints(width: 80));
return paragraph;
}