当前位置:网站首页>Fluent call interface UI
Fluent call interface UI
2022-07-28 01:22:00 【Alex Ling】
Flutter Call interface UI
Source code Download link , Welcome to like downloading and collecting .
The above figure is true 

- The code of the home page is as follows :
@override
Widget build(BuildContext context) {
return Stack(
fit: StackFit.expand,
children: [
// Image
Image.asset(
"assets/images/back_ground.jpg",
fit: BoxFit.cover,
),
// Black Layer
DecoratedBox(
decoration: BoxDecoration(color: Colors.black.withOpacity(0.3)),
),
Padding(
padding: const EdgeInsets.all(20.0),
child: SafeArea(
child: Padding(
padding: EdgeInsets.only(left: 5, right: 5, top: 30,bottom: 30),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
//
child: Column(
children: [
Text(
" Jiuxiao ",
style: Theme.of(context)
.textTheme
.headline3!
.copyWith(color: Colors.white),
),
Text(
" Yin Hu 04:30".toUpperCase(),
style: TextStyle(
color: Colors.white.withOpacity(0.6),
fontSize: 12
),
),
],
),
),
Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
RoundedButton(
press: () {
},
iconSrc: "assets/icons/Icon Mic.svg",
),
RoundedButton(
press: () {
Navigator.push(context, MaterialPageRoute(builder: (_) => ScreenPage()));
},
color: Colors.red,
iconColor: Colors.white,
iconSrc: "assets/icons/call_end.svg",
),
RoundedButton(
press: () {
},
iconSrc: "assets/icons/Icon Volume.svg",
),
],
),
],
),
)
),
),
],
);
}
Github Download link :
https://github.com/AlexLingFan/Alex_Calling_UI
Welcome to like downloading collections .
边栏推荐
- Jingfang Technology: ASML, a lithography machine manufacturer, is one of the main customers of Anterion company, which participated in the merger and acquisition of the company
- Go language variable
- In April, global smartphone shipments fell 41% year-on-year, and Huawei surpassed Samsung to become the world's first for the first time
- ABAP CDs table function introduction and examples
- The cooperation between starfish OS and metabell is just the beginning
- dataworks 传输数据到mysql 中文乱码是什么原因
- URDF 集成 Gazebo
- Codeforces暑期训练周报(7.21~7.27)
- Spool timer
- Huawei responded to the US blockade of the supply chain: they still have to pay for 5g patents
猜你喜欢
随机推荐
Oracle error: ora-01722 invalid number
At the meeting on June 19, SMIC may set the fastest listing record in China!
比亚迪半导体完成8亿元A+轮融资:30家知名投资机构入局,估值已达102亿元!
Use of postman
Matlab 绘制 - 点和向量:向量加减的方法和源码
mysql-JPA对数据库中JSON类型数据的支持
Basic learning of cesium
容器网络硬核技术内幕 (7) 大海航行靠舵手
Oxygen temperature and humidity module
诺基亚宣布与博通合作开发5G芯片
Redis-哨兵模式
Behind the war of seizing power in arm China: "two years of independence, it is still difficult to" independent "?
Basic concept and classification of i/o equipment
Software process that testers need to know
Spreadsheet export excel table
如何解决12,000家中小客户的元器件采购痛点?告别加班!
Go language variable
Rviz uses arbotix to control robot motion
Cesium add annular diffusion ripple
安全检测风险








