android flutter resolve flutte

flutter弹窗

AlertDialog: 优点:Material风格的弹窗,具有灵活的布局和样式自定义能力。易于使用,并提供了标题、内容和操作按钮的选项。 缺点:对于复杂的自定义布局和样式可能不够灵活。 BottomSheet: 优点:可以从底部弹出,并适用于需要在当前页面上方提供操作选项的场景。提供了自定义底部弹 ......
flutter

Flutter 中常用的视频播放器

Flutter 中常用的视频播放器有很多种,不同的播放器有着各自的优势和缺点。下面是一些常用的视频播放器,以及它们的优势、缺点和性能优化策略。 video_player: 优势:Flutter 官方提供的视频播放器,可支持多种平台,播放效果良好,使用简单。 缺点:不支持更高级的功能和自定义控制选项。 ......
播放器 常用 Flutter 视频

Android升级到了targetSdkVersion=30,微信拉不起来报错,支付宝拉起来要输入用户名的问题的解决

targetSdkVersion>=30的版本,需要在清单中加入第三方的应用包名,不然找不到相应的包名,导致拉不起来 解决的办法就是在清单中manifest里加入 <queries> <package android:name="com.tencent.mm" /> <package android ......

flutter 底部弹出框

getx模式 Get.bottomSheet( isScrollControlled: false, backgroundColor: AppColors.primaryBackground, isDismissible: false, enableDrag: false, Container( d ......
底部 flutter

Android——浏览网页——浏览网页实例

布局: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent ......
网页 实例 Android

An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue.

\Forms\WorkflowEditorHost\Methods\build private void build() .... System.Exception interopException; ............ else { try { workflowConfiguration = ......

Android 蓝牙使用

原文地址: Android 蓝牙使用 - Stars-One的杂货小窝 公司项目需求需要实现监听蓝牙耳机连接,且要获取蓝牙耳机电量功能,翻了不少官方文档,记录下技术调研代码 注:本文没有研究蓝牙配对功能 关于蓝牙权限适配 Android12以后,申请蓝牙权限需要申请一组,如新增的几个权限,需要一起申 ......
Android

flutter-button小组件

Widget btnFlatButtonWidget({ required VoidCallback onPressed, Widget? text, double width = 140, double height = 44, Color gbColor = AppColors.primaryE ......
flutter-button 组件 flutter button

seata-server-1.8.0 | Could not resolve placeholder 'console.user.username' in value "${console.user.username}"  | "${seata.security.secretKey}"

PS D:\gitrepo\seata-server-1.8.0\seata> * [Seata1.6.1启动报错:console.user.username\_seata could not resolve placeholder 'console.user.-CSDN博客](https://bl ......
quot username console seata user

vue3实现H5网页录音并上传(mp3、wav)兼容Android、iOS和PC端

使用 Recorder插件 可以在HTML5网页中进行录音,录音完成后得到blob文件对象,然后将blob上传到服务器;项目使用的vue3.0版本(这个插件同时支持vue2.0、也支持uniapp,很强!!),录音过程中会显示可视化波形,同时能够做到兼容PC端、Android、和iOS,一次编码 到 ......
Android 网页 vue3 vue mp3

Qt_on_Android 配置

参看Qt_on_Android核心编程13章Qt_on_Android揭秘 关闭安卓分区存储 ......
Qt_on_Android Android Qt on

xamarin android 导出 tts 语音到文件

public void ExportToFile(BookPageModel bookPageModel, string filepath) { var path = System.IO.Path.Combine(Android.OS.Environment.ExternalStorageDirec ......
语音 xamarin android 文件 tts

了解 Flutter 3.16 功能更新

作者 / Kevin Chisholm 我们在季度 Flutter 稳定版发布会上带来了 Flutter 3.16,此版本包含诸多更新: Material 3 成为新的默认主题、为 Android 带来 Impeller 的预览版、允许添加适用于 DevTools 的扩展程序等等,以及同步推出 Fl ......
Flutter 功能 3.16 16

Android——浏览网页——浏览本地html文件

ifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android ......
Android 网页 文件 html

Android——Glide加载网络图片——缓存

ifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android ......
缓存 Android 图片 Glide 网络

Android——Glide加载网络图片

Glide是谷歌开发的图片加载框架,也是Android官方推荐的图片加载框架。 使用Glide之前需要先导入glide库:implementation 'com.github.bumptech.glide:glide:4.13.0‘ Glide的用法很简单,只需一行代码即可将网络图片加载到图像视图界 ......
Android 图片 Glide 网络

Android——通过okhttp进行文件上传——从相册选中一张图片上传

gradle添加依赖: implementation 'com.squareup.okhttp3:okhttp:4.9.3' ifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.a ......
Android 文件 okhttp 相册 图片

Flutter 设置两端对齐

Container( // padding: EdgeInsets.only(left: 20, right: 20), margin: EdgeInsets.only(top: 20, left: 20, right: 20), width: 500, height: 500, decoratio ......
两端 Flutter

flutter镜像配置

buildscript { ext.kotlin_version = '1.7.10' repositories { maven { url 'https://maven.aliyun.com/repository/public/' } maven { url 'https://maven.aliy ......
镜像 flutter

Android——通过okhttp进行文件下载

ifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android ......
文件下载 Android 文件 okhttp

Android——通过okhttp进行网络请求

ifest文件,网络权限申请: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schema ......
Android okhttp 网络

Android——主线程给子线程发送消息——子线程有自己的looper

xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="mat ......
线程 Android 消息 looper

Flutter简单的实现Github的2FA认证

一、简单的介绍 OTP(One Time Password)是一种安全措施,用于在用户进行身份验证时增加一层保护。OTP通常是一串随机生成的数字,用于在用户登录过程中作为额外的验证步骤。这些数字通常是临时的,有效期限很短,通常只有几分钟或几秒钟,过了有效期后,该OTP就会失效,需要重新生成。 OTP ......
Flutter Github 2FA FA

Android——子线程发消息给主线程进行页面信息更新

一、认识Looper和Handler对象 当主线程诞生时,就会去执行一个消息循环(Message Loop),以便持续监视它的消息队列(Message Queue简称MQ)。 当UI事件发生了,通常会立即丢一个Message给MQ,此时主线程就立即从MQ里边取出该消息并处理。 比如,用户在UI界面上 ......
线程 Android 消息 页面 信息

Android——子线程刷新UI界面

xml配置文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_par ......
线程 界面 Android

android-uboot驱动

uboot驱动,主要是根据标准的格式,按照框架写就行了,我这里平台是基于RK3588s android12 uboot驱动需要使用U_BOOT_DRIVER函数,添加各个回调 U_BOOT_DRIVER(dc_charge_fg) = { .name = "dc_charge_fg", .id = ......
android-uboot android uboot

Android对接华为AI - 文本识别

准备工作 在开发应用前: 1、需要在AppGallery Connect中配置相关信息,包括:注册成为开发者和创建应用。 2、使用ML Kit云侧服务(端侧服务可不开通)需要开发者在AppGallery Connect上打开ML Kit服务开关。 集成HMS Core SDK 工程根目录build. ......
文本 Android

Windows Subsystem for Android (WSA) 下载:在 Windows 11 上运行 Android 应用 (updated Jan 2024)

Windows Subsystem for Android (WSA) 下载:在 Windows 11 上运行 Android 应用 (updated Jan 2024) 适用于 Android™️ 的 Windows 子系统,2023 年 1 月更新:2311.40000.5.0 请访问原文链接: ......
Windows Android Subsystem updated 2024

QT: Qt for MCU + PyQt6 to Android

https://www.qt.io/blog/taking-qt-for-python-to-android https://github.com/shyamnathp/python-for-android/tree/pyside_support https://www.qt.io/blog/qt- ......
Android PyQt6 PyQt MCU for

flutter Row嵌套TextField出错

flutter开发中遇到需求需要Row嵌套TextField,运行后发现代码报错: child: Row( children: [ TextField( decoration: InputDecoration( hintText: "名称" ), ) ], ), 错误码太多了,这里就不贴出来了。 c ......
TextField flutter Row
共2020篇  :2/68页 首页上一页2下一页尾页