2022年6月8日星期三

Make scrollable Text inside container in Flutter(SingleChildScrollView)

 Try to add scrollDirection (horizontal):

SingleChildScrollView(
scrollDirection: Axis.horizontal,
  child: Container(
      height: 200,
      child: Text(
          "Long text here which is longer than the container height")))

沒有留言:

發佈留言