0


Flutter:AnimatedPadding动态修改padding

  1. // 默认top为10,点击后修改为100,此时方块会向下移动
  2. padding: EdgeInsets.fromLTRB(left, top, right, bottom),
  1. class_MyHomePageStateextendsState<MyHomePage>{
  2. bool flag =true;
  3. @override
  4. Widget build(BuildContext context){returnScaffold(
  5. appBar:AppBar(
  6. title:constText('标题'),),
  7. body:AnimatedPadding(
  8. curve: Curves.easeIn,// 动画属性
  9. duration:Duration(milliseconds:500),// 默认
  10. padding: EdgeInsets.fromLTRB(10, flag ?10:100,0,0),
  11. child:Container(
  12. width:100,
  13. height:100,
  14. color: Colors.red,),),
  15. floatingActionButton:FloatingActionButton(
  16. onPressed:(){
  17. flag =!flag;setState((){});},
  18. child:constIcon(Icons.add),),);}}

在这里插入图片描述
在这里插入图片描述

标签: flutter android

本文转载自: https://blog.csdn.net/qq_40745143/article/details/143903622
版权归原作者 sunly_ 所有, 如有侵权,请联系我们删除。

“Flutter:AnimatedPadding动态修改padding”的评论:

还没有评论