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


相关推荐
年小个大7 小时前
受 go-zero 启发,我给 Flutter 写了一套 CLI 脚手架
android·flutter·架构
Android-Flutter8 小时前
为什么说ActivityThread是主线程?
android·kotlin
余额瞒着我当琳10 小时前
C++模板初阶与STL初探
android·java·c++
知行合一。。。13 小时前
DeepAgents--01--Agent和OpenClaw的相关概念
android·数据库
汪海游龙14 小时前
告别 Play Console 手动上传:从模拟器截图到自动发版的完整流水线
android·ci/cd·github
weixin_4407841114 小时前
【IntentSeivice实现原理】
android·java·开发语言·intentservice
delta_hell14 小时前
【阅读源码--Android】动画之ValueAnimator--2
android·源码·valueanimator
delta_hell14 小时前
【阅读源码--Android】动画之辅助类
android·源码·animator
GitLqr17 小时前
Flutter 居然能直接跑在 Apple Watch 上了?玩转 flutter-watchos
flutter·全栈·apple watch
delta_hell18 小时前
【阅读源码--Android】动画之ValueAnimator--1
android·源码·valueanimator