当前位置: 首页 > news >正文

网站接入银联支付怎么做淘宝网站制作公司哪家好

网站接入银联支付怎么做,淘宝网站制作公司哪家好,桥梁建设设计网站,礼盒包装设计网站flutter3-os-admin跨平台手机后台OS系统。 原创Flutter3.22Dart3.4Getxfl_chart等技术开发仿ios手机桌面OA管理系统。自研栅格化布局引擎、自定义桌面壁纸、小部件、底部Dock菜单、可拖拽悬浮球等功能。 全新自研栅格化OS菜单布局引擎。 使用技术 编辑器#xff1a;VScode技术…flutter3-os-admin跨平台手机后台OS系统。 原创Flutter3.22Dart3.4Getxfl_chart等技术开发仿ios手机桌面OA管理系统。自研栅格化布局引擎、自定义桌面壁纸、小部件、底部Dock菜单、可拖拽悬浮球等功能。 全新自研栅格化OS菜单布局引擎。 使用技术 编辑器VScode技术框架Flutter3.22.1Dart3.4.1路由/状态管理get^4.6.6本地存储get_storage^2.1.1svg图片插件flutter_svg^2.0.101图表组件fl_chart^0.68.0国际化时间intl^0.19.0 之前有分享一款uniappvue3跨端仿ios手机桌面系统。 https://blog.csdn.net/yanxinyun1990/article/details/139103578 编译到windows端效果依然完美显示。 项目结构 采用最新版flutter3.22dart3.4构建项目探索全新的手机OA后台管理系统新模式。 目前该项目已经发布到我的原创作品集如果有需要欢迎去下载使用。 https://gf.bilibili.com/item/detail/1106107011 main.js配置 import dart:io; import package:flutter/material.dart; import package:get/get.dart; import package:get_storage/get_storage.dart; import package:intl/date_symbol_data_local.dart; import utils/index.dart;// 栅格模板 import layouts/desk.dart;// 路由管理 import router/index.dart;void main() async {// 初始化get_storage存储await GetStorage.init();initializeDateFormatting();runApp(const MyApp()); }class MyApp extends StatelessWidget {const MyApp({super.key});overrideWidget build(BuildContext context) {return GetMaterialApp(title: Flutter WeOS,debugShowCheckedModeBanner: false,theme: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),useMaterial3: true,// 修复windows端字体粗细不一致fontFamily: Platform.isWindows ? Microsoft YaHei : null,),home: const DeskLayout(),// 初始化路由initialRoute: Utils.isLogin() ? / : /launch,// 路由页面getPages: routes,);} }flutter3数字解锁 一改以往输入框验证模式使用全新自研的数字密码解锁新模式。 使用 AnimatedSwitcher 和 FadeTransition 实现动画效果。 override Widget build(BuildContext context) {return Layout(extendBodyBehindAppBar: true,body: Container(padding: const EdgeInsets.all(20.0),child: AnimatedSwitcher(duration: const Duration(milliseconds: 250),// 动画控制transitionBuilder: (child, animation) {return FadeTransition(opacity: animation,child: ScaleTransition(// scale: animation,scale: animation.drive(Tween(begin: 0.9, end: 1.0).chain(CurveTween(curve: Curves.easeOut))),child: child,),);},// 当内容有变化的时候就会触发动画child: splashScreen ? GestureDetector(// 修复Column和Row组件点击空白处无响应问题behavior: HitTestBehavior.translucent,child: Column(children: [...],),onPanStart: (details) {setState(() {swipeY details.globalPosition.dy;});},onPanUpdate: (details) {double posY swipeY - details.globalPosition.dy;if(posY 100) {setState(() {splashScreen false;});}},):Center(child: Column(mainAxisAlignment: MainAxisAlignment.center,children: [...],),),),),); }Column(children: [const Text(数字密码解锁, style: TextStyle(color: Colors.white, fontSize: 14.0),),const SizedBox(height: 10.0,),Wrap(spacing: 15.0,children: List.generate(passwordArr.length, (index) {return AnimatedContainer(duration: const Duration(milliseconds: 300),height: 10.0,width: 10.0,decoration: BoxDecoration(color: int.parse(passwordArr[index]) pwdValue.length ? Colors.white : Colors.white.withOpacity(0.01),border: Border.all(color: Colors.white),borderRadius: BorderRadius.circular(50.0),),);})),], ),Container(width: 250.0,margin: const EdgeInsets.only(top: 50.0),child: Wrap(spacing: 15.0,runSpacing: 15.0,alignment: WrapAlignment.center,children: List.generate(keyNumbers.length, (index) {return Material(type: MaterialType.transparency,child: Ink(height: 60.0,width: 60.0,decoration: BoxDecoration(color: Colors.white24,border: Border.all(color: Colors.white24, width: .5),borderRadius: BorderRadius.circular(50.0),),child: InkWell(borderRadius: BorderRadius.circular(50.0),overlayColor: WidgetStateProperty.all(Colors.white38),child: DefaultTextStyle(style: const TextStyle(color: Colors.white, fontFamily: arial),child: Column(children: [const SizedBox(height: 10.0,),Text(keyNumbers[index][num], style: const TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold),),Text(keyNumbers[index][letter], style: const TextStyle(fontSize: 10.0),),],),),onTap: () {handleClickNum(keyNumbers[index][num]);},),),);})), ),flutter3桌面os布局 桌面布局分为栅格式菜单底部Dock菜单拖拽悬浮球。 override Widget build(BuildContext context) {return Scaffold(extendBodyBehindAppBar: widget.extendBodyBehindAppBar,appBar: widget.appBar ?? AppBar(forceMaterialTransparency: true,backgroundColor: Colors.transparent,foregroundColor: Colors.white,toolbarHeight: 0,),body: Center(child: Stack(children: [// 壁纸皮肤if(widget.showBackground)Obx(() Container(decoration: BoxDecoration(image: DecorationImage(image: AssetImage(${skinController.skinUrl}),fit: BoxFit.fill,),),)),Flex(direction: Axis.vertical,crossAxisAlignment: CrossAxisAlignment.start,children: [// 顶部插槽Container(child: widget.header,),// 内容区域Expanded(child: widget.body ?? Container(),),// 底部插槽Container(child: widget.footer,),],),// 额外插槽Container(child: widget.extra,),],),),); }flutter3桌面os菜单 /** 桌面os菜单配置项 * [label] 图标标题* [imgico] 图标(本地或网络图片) 当type: icon则为uni-icons图标名当type: widget则为自定义小部件标识名* [type] 图标类型(icon | widget) icon为uni-icons图标、widget为自定义小部件* [path] 跳转路由页面* [link] 跳转外部链接* [hideLabel] 是否隐藏图标标题* [background] 自定义图标背景色* [size] 栅格磁贴布局(16种) 1x1 1x2 1x3 1x4、2x1 2x2 2x3 2x4、3x1 3x2 3x3 3x4、4x1 4x2 4x3 4x4* [onClick] 点击图标回调函数*/只需配置children参数即可生成一个二级弹窗菜单。 // 桌面os菜单配置 Q282310962 List deskMenus [...{uid: 3u85fb90-12c4-11e1-840d-7b25c5ee775a,list: [{label: Flutter3.22, imgico: assets/images/flutter.png, link: https://flutter.dev/},{label: Dart中文官方文档, imgico: assets/images/dart.png, link: https://dart.cn/},...{label: 日历, imgico: const Calendar1x1(), type: widget, path: /calendar, background: const Color(0xffffffff),},{label: 首页, imgico: const Icon(Icons.home_outlined), type: icon, path: /home},{label: 工作台, imgico: const Icon(Icons.poll_outlined), type: icon, path: /workplace},{label: 组件,children: [{label: 组件, imgico: assets/images/svg/component.svg, path: /component},...]},{label: 管理中心,children: [{label: 个人主页, imgico: assets/images/svg/my.svg, path: /ucenter},...]},{label: 编程开发,children: [{label: Github, imgico: assets/images/svg/github.svg, background: const Color(0xff607d8b),},{label: Flutter, imgico: assets/images/flutter.png, background: const Color(0xFFDAF2FA),},{label: ChatGPT, imgico: assets/images/svg/chatgpt.svg, background: const Color(0xFF15A17F),},...]},{label: 关于, imgico: const Icon(Icons.info), type: icon,onClick: () {...}},{label: 公众号, imgico: const Icon(Icons.qr_code), type: icon,onClick: () {...}},]}... ];综上就是flutter3.22getx实战手机桌面os系统的一些分享希望对大家有所帮助~ https://blog.csdn.net/yanxinyun1990/article/details/138317354 https://blog.csdn.net/yanxinyun1990/article/details/136996521 https://blog.csdn.net/yanxinyun1990/article/details/136410049
http://www.laogonggong.com/news/108287.html

相关文章:

  • 网站开发需要用到哪些设备软件开发模型有哪些
  • 天津最好网站建设公司网店如何引流与推广
  • 网站开发实训家装公司需要什么条件
  • 河南那家公司做家具行业网站好胶州网站建设规划
  • 网站后台组成edu网站开发
  • 河南艾特 网站建设公司wordpress网站收录插件
  • 做网站带阿里云服务器多少钱西风seo
  • 东莞网站设计定制开发企业管理咨询服务公司
  • 网络编程和网站建设联系网站设计排行榜
  • 网络营销网站建设方案自己做网站怎么租服务器
  • 西安网站建设需要多少钱珠海企业网站设计
  • php做网站教程域名注册网站搭建
  • google 空间 网站软件二次开发
  • 徐州网站制作方案做阿里巴巴网站的电话号码
  • 知名电子商务网站中企动力公司待遇怎么样
  • 北京微信网站搭建费用网站效果展示
  • 苏州市网站建设公司企业做网站哪家便宜
  • 建设网站的工作一家专做灯的网站招聘
  • 网站优化 代码本地网站搭建
  • 南平购物网站开发设计在校学生兼职网站建设
  • 网站 维护 费用杭州安卓软件开发
  • 国内知名设计网站wordpress分库技术
  • 大型网站建设入门自己怎么样建网站视频
  • 网站建设需要哪些费用支出郑州餐饮网站建设公司
  • 泰安口碑好的网站建设网站设计技术
  • 电子商务网站建设及推广淄博网站建设优化seo
  • 网站底部备案号电子商务网站建设的好处有哪些
  • 网站制作行业建网站用的域名多少钱
  • 高端网站定制阿里巴巴上做网站要多少钱
  • 设计公司网站的要点做商品网站