Flutter实现用视频背景的登录页的示例代码
作者:Tecode 时间:2022-01-02 05:45:54
最终效果
项目地址
https://github.com/Tecode/flutter_widget
实现方法
安装插件
安装video_player,我安装的是最新的版本,请根据你自己的flutter版本去安装对应的版本,安卓可以直接使用虚拟机,IOS需要真机才可以播放。
dev_dependencies:
flutter_test:
sdk: flutter
video_player: ^0.10.1+6
我的Flutter版本
Flutter 1.7.8+hotfix.4 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 2e540931f7 (3 days ago) • 2019-07-09 13:14:38 -0700
Engine • revision 54ad777fd2
Tools • Dart 2.4.0
使用
import 'package:video_player/video_player.dart';
初始化播放
@override
void initState() {
// TODO: implement initState
super.initState();
_controller = VideoPlayerController.network(videoUrl)
..initialize().then((_) {
setState(() {});
_controller.play();
_controller.setLooping(true);
// _controller.setVolume(0.0);
Timer.periodic(Duration(seconds: 15), (Timer time) {
print(time);
});
});
}
销毁时暂停
@override
void dispose() {
// TODO: implement dispose
super.dispose();
_controller.pause();
}
布局
主要部分
使用Transform.scale对视频进行缩放,我们想要的效果就是不管视频是什么比率,都可以平铺无拉伸的显示。Center让视频放大以后居中显示,缩放比为_controller.value.aspectRatio /MediaQuery.of(context).size.aspectRatio,用视频的宽高比除以设备的宽高比。
如果我们对视频进行处理也会铺满全部屏幕,但是会被拉伸,看起来很丑,可以拉下代码试一下。
@override
void dispose() {
// TODO: implement dispose
super.dispose();
_controller.pause();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
fit: StackFit.expand,
children: <Widget>[
Transform.scale(
scale: _controller.value.aspectRatio /
MediaQuery.of(context).size.aspectRatio,
child: Center(
child: Container(
child: _controller.value.initialized
? AspectRatio(
aspectRatio: _controller.value.aspectRatio,
child: VideoPlayer(_controller),
)
: Text("正在初始化"),
),
),
),
Positioned(
width: MediaQuery.of(context).size.width,
bottom: 26.0,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ClipRRect(
borderRadius: BorderRadius.circular(60.0),
child: MaterialButton(
onPressed: () {},
child: Text(
"微信登录",
style:
TextStyle(fontSize: 15.0, fontWeight: FontWeight.bold),
),
color: Color(0xffFFDB2E),
textColor: Color(0xff202326),
height: 44.0,
minWidth: 240.0,
elevation: 0.0,
),
),
SizedBox(
height: 20.0,
),
ClipRRect(
borderRadius: BorderRadius.circular(60.0),
child: MaterialButton(
onPressed: () {},
child: Text(
"手机号登录",
style:
TextStyle(fontSize: 15.0, fontWeight: FontWeight.bold),
),
color: Color(0xff202326),
height: 44.0,
minWidth: 240.0,
elevation: 0.0,
textColor: Color(0xffededed),
),
),
SizedBox(
height: 60.0,
),
Text(
"我已阅读并同意《服务协议》及《隐私政策》",
style: TextStyle(color: Colors.white, fontSize: 13.0),
)
],
),
),
Positioned(
width: MediaQuery.of(context).size.width,
top: 80.0,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
"登录",
style: TextStyle(
fontSize: 40.0,
fontWeight: FontWeight.w400,
color: Colors.white),
),
SizedBox(
height: 10.0,
),
Text(
"视频背景登录页面",
style: TextStyle(color: Colors.white, fontSize: 15.0),
)
],
),
)
],
));
}
写在最后
平时会不定期更新其它的组件欢迎关注,欢迎star。
来源:https://juejin.im/post/5d455196e51d4561ea1a93df
标签:Flutter,登录页
0
投稿
猜你喜欢
仿iphone中短信以及通话记录的时间显示
2021-07-23 02:34:28
WPF ProgressBar实现实时进度效果
2023-01-14 08:05:49
Android网易有道词典案例源码分享
2022-09-18 20:53:25
图解JVM垃圾内存回收算法
2023-10-13 17:24:35
Android自定义Drawable实现圆形和圆角
2022-05-07 14:59:59
java中使用interrupt通知线程停止详析
2023-09-03 11:41:26
Java 17 更快的 LTS 节奏
2023-07-08 11:36:19
C#获取U盘序列号的方法
2023-09-15 02:09:54
idea中MavenWeb项目不能创建Servlet的解决方案
2022-07-09 19:26:11
IDEA中创建maven项目引入相关依赖无法下载jar问题及解决方案
2021-06-09 12:51:53
Java 实战范例之校园二手市场系统的实现
2023-06-10 12:52:17
浅谈EventBus
2022-12-31 20:23:14
拉钩网java笔试题分享
2022-02-13 08:48:25
C# 反射与dynamic最佳组合示例代码
2022-01-18 02:29:53
浅谈@FeignClient中name和value属性的区别
2023-11-06 13:04:14
使用C#获取远程图片 Form用户名与密码Authorization认证的实现
2022-01-22 21:44:06
C#验证身份证号码正确性的实例代码(收藏)
2023-12-18 17:28:33
SpringBoot浅析Redis访问操作使用
2022-09-26 02:09:18
C#求n个数中最大值和最小值的方法
2022-04-20 08:00:01
Kotlin中常见内联扩展函数的使用方法教程
2023-07-04 13:46:12