Let’s see how to put long text inside Column. Of course you have to put Text widget inside the Column widget a child. Here we will learn a specific rules to how it long should work every where.
In general the below lay out won’t work.
See the complex layout Row->Column->Text10Normal().
In this case Text10Normal() is a custom text widget. It is responsible for showing long text but it overflows.
So solve this issue we need to wrap Text10Normal() inside a Expanded() Widget? No, this won’t work either.
In fact, complex layout like we should always wrap the last Column inside Expanded() widget.
Always wrap your last Column() widget inside Expanded() widget.