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


相关推荐
YB13758 小时前
jetpack compose 副作用 SideEffect
android·kotlin
CHB9 小时前
uni-app x 蒸汽模式 性能测试基准报告 Benchmark【Android版】
android·ios·uni-app
阿里云云原生10 小时前
还原一次用户等待:深度解析 Flutter RUM SDK 如何打通 Dart 到 Native 的观测链路
flutter
带娃的IT创业者11 小时前
拆掉那堵墙:LibrePods 如何让 AirPods 在 Android 上重获新生
android·开源项目·airpods·librepods·生态解锁
_阿南_12 小时前
flutter 展示的字体突然奔放了
android·flutter·ios
文人sec15 小时前
MySQL事务与索引做了什么?
android·笔记·mysql
GitLqr16 小时前
玩转 Dart typedef:不仅是函数别名那么简单
flutter·面试·dart
刘洋浪子16 小时前
AndroidStudio保存日志菜单
android
朱涛的自习室16 小时前
从 Prompt 到 Graph:AI 工程的进化史
android·前端·人工智能
2501_9327502616 小时前
Android 中 Serializable 与 Parcelable 的对比与选择
android