无法使文本在Flutter中滚动

时间:2019-02-01 09:04:17

标签: flutter

我正在尝试使文本在Flutter应用中滚动,但无法正常工作,我正在使用ListView,因此它应该可以工作,但是我一直收到以下消息-RenderFlex底部溢出147个像素。还附有屏幕截图

id

enter image description here

1 个答案:

答案 0 :(得分:1)

解决方案是将ListView包装在-Expanded小部件中。

更新的代码:

Column(
        mainAxisAlignment: MainAxisAlignment.start,
        children: <Widget>[
          new Container(
            padding: const EdgeInsets.only(top: 25.0),
            child: Center(
              child: Text(
                'Shelf Companies Australia',
                style: TextStyle(
                  fontSize: 25.0,
                  color: Colors.black87,
                ),
              ),
            ),
          ),
          new Container(
            padding: const EdgeInsets.only(top: 10.0),
            child: Center(
              child: Text(
                'Experience and Professionalism',
                style: TextStyle(
                  fontSize: 20.0,
                  color: Colors.black87,
                ),
              ),
            ),
          ),
          Expanded(                         // wrap the ListView
            child: new ListView(
              shrinkWrap: true,
              padding: const EdgeInsets.all(20.0),
              children: <Widget>[
                const Text(
                  'Since 1987 Shelf Companies Australia has developed an impressive reputation for providing a quality service, personalised to suit your firm’s requirements. We have tailored our business over the years to ensure your firm receives the type of service expected in today\'s demanding business world. We strive to deliver Instant electronic company registration with ASIC and a complete company register on your desk the next day throughout Australia! While our trusted partner firms ensure all our Trust deeds and Superannuation deeds are completely up to date with all ATO rulings and industry standards. With clients including some of Australia\'s top legal and accounting practices Shelf Companies Australia is the leader in high quality customer service and products within the corporate services arena. With an experienced and knowledgeable team, including ex ASIC employees, we pride ourselves on being able to complete not only your standard Company, Trust and Business setup but those complex secretarial services where other online providers balk Shelf Companies Australia, your corporate services specialists.',
                  style: TextStyle(
                    fontSize: 18.0,
                    color: Colors.black87,
                  ),
                ),
              ],
            ),
          )
        ],
      ),