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),
      ),
    );
  }
}


相关推荐
三少爷的鞋几秒前
Android 架构演进:从生命周期事件到结构化任务
android
一笑的小酒馆7 小时前
AndroidKMP之网络请求
android
aqi0010 小时前
鸿蒙版本的JSBridge兼容与安卓配套的H5啦
android·华为·harmonyos·鸿蒙·移动应用
事圆则缓11 小时前
MVVM 的理解与设计
android·android jetpack
熊猫钓鱼>_>11 小时前
Flutter app_settings 鸿蒙适配实战:Intent 体系到 Want 的跨越
flutter·华为·harmonyos·openharmony·intent·want
码农阿豪12 小时前
我把 OpenClaw 装进旧安卓手机后,又折腾了 3 天:飞书、ADB、SSH 全部打通
android·智能手机·飞书
里欧跑得慢13 小时前
Flutter主题与样式详解
前端·css·flutter·web
有什么事14 小时前
把安卓搬上云端:云手机系统改造与内核优化拆解
android·智能手机
方白羽14 小时前
性能分析:Android Studio Profiler
android·性能优化·app
没文化的阿浩14 小时前
【MySQL】用户管理
android·mysql·adb