Flutter:AnimatedPadding动态修改padding

html 复制代码
// 默认top为10,点击后修改为100,此时方块会向下移动
padding: EdgeInsets.fromLTRB(left, top, right, bottom),
js 复制代码
class _MyHomePageState extends State<MyHomePage> {
  bool flag = true;
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('标题'),
      ),
      body: AnimatedPadding(
        curve: Curves.easeIn, // 动画属性
        duration: Duration(milliseconds: 500),
        // 默认
        padding: EdgeInsets.fromLTRB(10, flag ?10 : 100, 0, 0),
        child: Container(
          width: 100,
          height: 100,
          color: Colors.red,
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: (){
          flag = !flag;
          setState(() {});
        },
        child: const Icon(Icons.add),
      ),
    );
  }
}


相关推荐
诸神黄昏EX4 小时前
Android 常用命令和工具解析之GPU相关
android
顾北川_野4 小时前
Android 布局菜单或按钮图标或Menu/Item设置可见和不可见
android
练习本4 小时前
android 动画原理分析
android
别拿曾经看以后~4 小时前
原生Android调用uniapp项目中的方法
android·vue.js·uni-app
Winston Wood4 小时前
Android Binder技术概览
android·binder·进程通信
踏雪羽翼4 小时前
android 使用实现音效--Equalizer
android·音效·eqequalizer·bassboost·presetreverb
老码沉思录4 小时前
Android开发实战班 - Android开发基础之 Kotlin语言基础与特性
android·微信·kotlin
峥嵘life4 小时前
Android adb shell dumpsys audio 信息查看分析详解
android·adb
standxy6 小时前
集成金蝶云星空数据至MySQL的完整案例解析
android·数据库·mysql