Make scrollable Text inside container in Flutter(SingleChildScrollView)
Try to addscrollDirection(horizontal):
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Container(
height: 200,
child: Text(
"Long text here which is longer than the container height")))
沒有留言:
發佈留言