Reflow - Flutter
In Flutter, all elements should be placed in a scalable widget, such as SingleChildScrollView
or ListView
. These widgets ensures that underlying widgets will become scrollable, in case they do not fit on the screen.
SingleChildScrollView(
child: Text(
'Content should scroll!',
softWrap: true,
overflow: TextOverflow.visible,
),
)