Flutter实现夸界面的组件移动动画效果(不背单词App点击头像的动画、查看图片的动画)

主要是利用Flutter中的Hero Widget来实现夸界面的组件移动动画效果(不背单词App点击头像的动画、查看图片的动画)。

效果如下:

Flutter中使用Hero组件实现夸界面组件动画

话不多说,上代码。

main.dart代码如下

import 'package:flutter/material.dart';
import 'image_detail.dart';

void main() => runApp(const MyApp(title: "查看图片"));

class MyApp extends StatelessWidget {
  final String _title;

  const MyApp({super.key, title}) : _title = title ?? "Flutter Demo";

  
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: "Flutter Demo",
      home: Scaffold(
        appBar: AppBar(
          title: Center(
              child: Text(
            _title,
            style: const TextStyle(color: Colors.white),
          )),
          backgroundColor: Colors.blue,
        ),
        body: MyHomePage(),
      ),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({super.key});

  
  Widget build(BuildContext context) {
    return GridView(
      gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
          mainAxisSpacing: 8,
          crossAxisSpacing: 8,
          crossAxisCount: 2,
          childAspectRatio: 16 / 9),
      children: List.generate(20, (index) {
        final String imageURL = "https://picsum.photos/500/500?random=$index";
        return GestureDetector(
          onTap: () {
            Navigator.of(context).push(
              PageRouteBuilder(
                reverseTransitionDuration: const Duration(milliseconds: 300),
                pageBuilder: (ctx, animation1, animation2) {
                  return FadeTransition(
                    opacity: animation1,
                    child: CheckImageDetail(imageURL),
                  );
                },
              ),
            );
          },
          child: Hero(
            tag: imageURL,
            child: Image.network(
              imageURL,
              fit: BoxFit.cover,
            ),
          ),
        );
      }),
    );
  }
}

相同目录下新建image_detail.dart文件,该界面用于查看图片大图,代码如下。

import 'package:flutter/material.dart';

class CheckImageDetail extends StatelessWidget {
  final String _imageURL;

  const CheckImageDetail(this._imageURL, {super.key});

  
  Widget build(BuildContext context) {
    return GestureDetector(
      onTap: () {
        Navigator.of(context).pop();
      },
      child: Scaffold(
        backgroundColor: Colors.black,
        body: Center(
          child: Hero(
            tag: _imageURL,
            child: Image.network(
              _imageURL,
              fit: BoxFit.fitWidth,
            ),
          ),
        ),
      ),
    );
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

「已注销」

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值