I looked up here and pub.dev and flutter docs but could not find(or could not word my query) any solution for this simple task.
I want to display a String
with its letters going from up to down while keeping the letter orientations default. So a rotated Text()
would not work.
My desired outcome is this:
H
E
L T
L H
O A
N
W K
O S
R ❤️
L
D
Also, I would need to wrap the String
to the next line(column in this case) A height parameter is necessary to limit the number of letters from top to down for each column.
If this last part is too hard to implement, I am open to ideas for the single column solution.