Flutter使用拖动和按钮单击来展开TextField [英] Flutter expand TextField using dragging and button click

查看:221
本文介绍了Flutter使用拖动和按钮单击来展开TextField的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何增加/减少 maxLines TextField 中找到c>?

How can I increase/decrease the number of maxLines in TextField with dragging and clicking button?

推荐答案

屏幕截图:

< a href = https://i.stack.imgur.com/X7Rbc.gif rel = noreferrer>

完整代码:

class YourPage extends StatefulWidget {
  @override
  _YourPageState createState() => _YourPageState();
}

class _YourPageState extends State<YourPage> {
  double _maxHeight = 200, _minHeight = 44, _height = 44, _dividerHeight = 56, _offset = 19;
  int _maxLines = 1;
  static final Duration _fixDuration = Duration(milliseconds: 500);
  Duration _duration = _fixDuration;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(),
      body: Padding(
        padding: const EdgeInsets.all(20),
        child: SizedBox(
          height: _maxHeight,
          child: Column(
            children: <Widget>[
              AnimatedContainer(
                duration: _duration,
                height: _height,
                child: TextField(
                  decoration: InputDecoration(hintText: "Enter a message"),
                  maxLines: _maxLines,
                ),
              ),
              Container(
                height: _dividerHeight,
                width: 200,
                child: Row(
                  mainAxisAlignment: MainAxisAlignment.spaceAround,
                  children: <Widget>[
                    IconButton(
                      icon: Icon(Icons.arrow_downward),
                      onPressed: () {
                        if (_height <= _maxHeight - _offset - _dividerHeight) {
                          setState(() {
                            _duration = _fixDuration;
                            _height += _offset;
                            _maxLines++;
                          });
                        }
                      },
                    ),
                    GestureDetector(
                      child: Icon(Icons.drag_handle),
                      onPanUpdate: (details) {
                        setState(() {
                          _height += details.delta.dy;
                          _duration = Duration.zero;

                          // prevent overflow if height is more/less than available space
                          var maxLimit = _maxHeight - _dividerHeight;
                          var minLimit = 44.0;

                          if (_height > maxLimit)
                            _height = maxLimit;
                          else if (_height < minLimit) _height = minLimit;

                          _maxLines = 100;
                        });
                      },
                    ),
                    IconButton(
                      icon: Icon(Icons.arrow_upward),
                      onPressed: () {
                        if (_height >= _minHeight + _offset) {
                          setState(() {
                            _duration = _fixDuration;
                            _height -= _offset;
                          });
                        }
                      },
                    ),
                  ],
                ),
              )
            ],
          ),
        ),
      ),
    );
  }
}

这篇关于Flutter使用拖动和按钮单击来展开TextField的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆