tl;dr
How to split a string after it reaches the maxmimum height in its Text widget?
My problem
I'm new to Flutter, that's why it is possible that I did not see low hangig fruits.
What I want is, that a string of various length are splitted into an n-amount of styled Text widgets.
All in all it should look like a multi-column layout but also on dual screen devices (2 on the left side, 2 on the right side).
That's why I tought, the best idea is to split the text into a list of Text widgets that are constraint / limited by their maximum height.
Question
How to calculate the length of the text which fits into a column, that I can split it up?
After that I think I know what I've to do
I think after I know how to split the text everything else is straight forward.
What I googled
Sketch