Flutter Web image hover zoom (實現flutter圖片懸浮縮放)
IPFS
實現鼠標在圖像時圖片縮放
如何實現他?
Using AnimatedContainer to do animation and using InkWell to detect hover.
In InkWell:
InkWell( onTap: () { print('Tap'); }, // Detect hover here onHover: (val) { setState(() { isHover = val; print(val); }); }, child: //Child )
In AnimatedContainer:
AnimatedContainer( transform: isHover ? hoverdTransform : unhoverdTransform, // duraction time duration: const Duration(seconds: 10), curve: Curves.ease, child: Image.network( imageUrl, fit: BoxFit.cover, height: 200, ), ),
Full Code:
import 'dart:convert'; import 'dart:io'; import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Home(), ), ); } class Home extends StatefulWidget { @override _HomeState createState() => _HomeState(); } class _HomeState extends State<Home> { @override Widget build(BuildContext context) { return Scaffold( body: ZoomAnimate(), ); } } class ZoomAnimate extends StatefulWidget { const ZoomAnimate({Key? key}) : super(key: key); @override State<ZoomAnimate> createState() => _ZoomAnimateState(); } class _ZoomAnimateState extends State<ZoomAnimate> { bool isHover = false; String imageUrl = "https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Ash_Tree_-_geograph.org.uk_-_590710.jpg/220px-Ash_Tree_-_geograph.org.uk_-_590710.jpg"; @override Widget build(BuildContext context) { final hoverdTransform = Matrix4.identity()..scale(1.2); final unhoverdTransform = Matrix4.identity()..scale(1); return Padding( padding: const EdgeInsets.all(8.0), child: InkWell( onTap: () { print('Tap'); }, onHover: (val) { setState(() { isHover = val; print(val); }); }, child: ClipRRect( borderRadius: BorderRadius.circular(8.0), child: AnimatedContainer( transform: isHover ? hoverdTransform : unhoverdTransform, duration: const Duration(seconds: 10), curve: Curves.ease, child: Image.network( imageUrl, fit: BoxFit.cover, height: 200, ), ), ), ), ); } }
我是阿甫,歡迎到我的Blog逛逛
Blog: 連結
喜欢我的作品吗?别忘了给予支持与赞赏,让我知道在创作的路上有你陪伴,一起延续这份热忱!