How to handle the first line indentation
Adding    before text is effective, but when setting the paragraph alignment to justify,    becomes ineffective.
Is there another way to set the first-line indentation for paragraphs?
String htmlContent = ''' <p>test content test content test content test content test content test content test content test content test content</p> '''; return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: SelectionArea( child: HtmlWidget( htmlContent, customStylesBuilder: (dom.Element element){ Map<String,String>? style = {}; element.innerHtml = '  ${element.innerHtml}'; style['text-align'] = 'justify'; return style; }, ), ) );
We probably need text-indent support for that, see #196.