Using Flutter, I have a long text that has citations inline, that I would like displayed to the side of the text, but kept on the same line where the original citation was, even when the text is resized. As well as avoiding line breaks. For example the original text might be:
Lorem ipsum dolor sit amet, consectetur *132a* adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut *133c* aliquip ex ea commodo consequat. Duis
And I would like it displayed as:
132a Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
133c quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
While allowing the citations to stay inline with the original location when the text is resized. And avoiding line breaks.
I've tried using the RichText widget, using TextSpan for the text and WidgetSpan for the citations and with other widgets such as Stack, Position and OverflowBox
Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
RichText(
text: TextSpan(
children: [
TextSpan(text: textA),
WidgetSpan(child: Text('132a')), // I've tried many widgets here
TextSpan(text: textB),
])),
],
),
),
With CSS I could use float: left to get a similar effect, but I've been unable to figure out a way to do this with the Flutter UI.

