Flutter开发实现底部留言板
本文实例为大家分享了Flutter实现底部留言板的具体代码,供大家参考,具体内容如下
前言
现在大家基本上都会去接触抖音那款app,其中抖音中的留言区域的效果也是要前几天工作的需求,看了网上对这块并没有什么博客介绍。只能自己封装编写了。
主要技术
其实这个技术就是运用了动画这个功能封装实现的
实例代码分析
初始化封装
/*初始化状态*/ initState() { super.initState(); /*创建动画控制类对象*/ controller = new AnimationController( duration: const Duration(milliseconds: 1000), vsync: this); /*创建补间对象*/ tween = new Tween(begin: 0.0, end: 1.0) .animate(controller) //返回Animation对象 ..addListener(() { //添加监听 setState(() { Provide.value(context).changHeight(tween.value); // print(tween.value); //打印补间插值 }); }); // controller.forward(); //执行动画 }
全部代码
import "package:flutter/material.dart"; void main(){ runApp( MaterialApp( debugShowCheckedModeBanner: false, home: cityContent(), ) ); } class cityContent extends StatefulWidget { cityContent({Key key}) : super(key: key); _cityContentState createState() => _cityContentState(); } class _cityContentState extends Statewith SingleTickerProviderStateMixin{ Animation tween; AnimationController controller; /*初始化状态*/ initState() { super.initState(); /*创建动画控制类对象*/ controller = new AnimationController( duration: const Duration(milliseconds: 1000), vsync: this); /*创建补间对象*/ tween = new Tween(begin: 0.0, end: 1.0) .animate(controller) //返回Animation对象 ..addListener(() { //添加监听 setState(() { Provide.value (context).changHeight(tween.value); // print(tween.value); //打印补间插值 }); }); // controller.forward(); //执行动画 } @override Widget build(BuildContext context) { return Scaffold( body: Stack( children: [ InkWell( onTap: (){ // 动作反方向执行,即关闭留言板 controller.reverse(); }, child: ListView( children: [ Center( child: InkWell( onTap: (){ controller.forward(); //执行动画,即打开留言板 }, child: Text( "打开底部抽屉" ), ) ), ], ), ), Positioned( bottom: 0, child: Container( margin: EdgeInsets.fromLTRB(20, 0, 20, 0), height: 400*controller.value, width: 300, color: Colors.grey.shade300, child: ListView( // physics: NeverScrollableScrollPhysics(), children: [ Container( margin: EdgeInsets.only(left: 240), child: InkWell( onTap: (){ // 动作反方向执行,即关闭留言板 controller.reverse(); }, child: Icon(Icons.clear), ) ), Center( child: Text("留言列表"), ) ], ), ) ), ], ) ); } }
现在这个大部分的功能是现在的,不过还是差一个手势的问题。我有一个初步的想法是结合状态管理可以做的,不过有一个bug,就是用手势来改变留言板的高度的时候,动画状态没有初始化。希望知道的小伙伴跟我探讨探讨。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?