栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

以编程方式滚动到ListView的末尾

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

以编程方式滚动到ListView的末尾

如果将收缩包装

ListView
与一起使用
reverse: true
,将其滚动到0.0即可完成所需的操作。

import 'dart:collection';import 'package:flutter/material.dart';void main() {  runApp(new MyApp());}class MyApp extends StatelessWidget {  @override  Widget build(BuildContext context) {    return new MaterialApp(      title: 'Example',      home: new MyHomePage(),    );  }}class MyHomePage extends StatefulWidget {  @override  _MyHomePageState createState() => new _MyHomePageState();}class _MyHomePageState extends State<MyHomePage> {  List<Widget> _messages = <Widget>[new Text('hello'), new Text('world')];  ScrollController _scrollController = new ScrollController();  @override  Widget build(BuildContext context) {    return new Scaffold(      body: new Center(        child: new Container(          decoration: new BoxDecoration(backgroundColor: Colors.blueGrey.shade100),          width: 100.0,          height: 100.0,          child: new Column( children: [   new Flexible(     child: new ListView(       controller: _scrollController,       reverse: true,       shrinkWrap: true,       children: new UnmodifiableListView(_messages),     ),   ), ],          ),        ),      ),      floatingActionButton: new FloatingActionButton(        child: new Icon(Icons.add),        onPressed: () {          setState(() { _messages.insert(0, new Text("message ${_messages.length}"));          });          _scrollController.animateTo( 0.0, curve: Curves.easeOut, duration: const Duration(milliseconds: 300),          );        }      ),    );  }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/393521.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号