Last updated:
0 purchases
fake wx drag dismiss
Features #
Imitation of WeChat Moments to view video interaction.
Usage #
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text('Fake demo'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
GestureDetector(
onTap: () {
Navigator.push(
context,
PageRouteBuilder(
fullscreenDialog: true,
opaque: false,
pageBuilder: (ctx, begin, end) {
return DragTransitionPage(builder: (ctx) {
return const HeroWxPage(
tag: 'HeroWxPage',
);
});
},
transitionsBuilder: (ctx, _, __, child) {
return defaultTransitionsBuilder(context, child);
},
transitionDuration: dragDefaultTransitionDuration,
reverseTransitionDuration: dragDefaultTransitionDuration,
),
);
},
child: Hero(
tag: 'HeroWxPage',
child: Container(
height: 100,
width: 100,
clipBehavior: Clip.antiAlias,
decoration: const BoxDecoration(
color: Colors.transparent,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(16),
topRight: Radius.circular(16),
),
),
child: Image.network(
'https://source.unsplash.com/1900x3600/?camera,paper',
width: 100,
height: 100,
fit: BoxFit.fill,
),
),
),
),
// const JankWidget(),
],
),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
copied to clipboard
HeroWxPage
class HeroWxPage extends StatelessWidget {
const HeroWxPage({
super.key,
required this.tag,
});
final String tag;
@override
Widget build(BuildContext context) {
return HeroAnimationWidget(
tag: tag,
child: Scaffold(
backgroundColor: Colors.transparent,
body: Image.network(
'https://source.unsplash.com/1900x3600/?camera,paper',
fit: BoxFit.fill,
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
),
),
);
}
}
copied to clipboard
Thanks #
Thank you EchoPuda https://github.com/EchoPuda/wx_video_player.git.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.