Flutter Android 实现 APP跳转 修改/app/src/mian/AndroidManifest.xml配置。安装插件:url_launcher: ^5.7.10。注册完成,APP已经可以被第三方调用了;创建URL scheme。一、APP 实现被打开。二、打开第三方APP。
Flutter 修改App Logo图标 简单粗暴的方式修改APP LOGO图标打开一下路径"./android/app/src/main/res",会看到如图的目录结构找到一个安卓图标在线生成网站,网站这种网站有很多,这边随便找了一个:https://icon.wuruihong.com/生成以后的结果如下图,压缩包中的文件和目录下面图标的文件名是一样的,所以直接复粘贴直接覆盖,就OK了...
Flutter 修改程序版本以及程序名称 编辑pubspec.yaml文件name: flutterDemodescription: A new Flutter application.# The following defines the version and build number for your application.# A version number is three numbers separated by dots, like 1.2.43# followed by an optional build numb
Flutter 实现二维码扫描 配置安卓访问权限:1. 文件配置路径android\app\src\main\AndroidManifest.xml2. 添加代码:<uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:na
Vue Nginx 发布部署 安装部署Nginx:Nginx windows 安装部署 编译Vue程序:npm run build 生成dist文件夹里面的文件如下: 将dist文件夹拷贝到:D:ginx-1.18.0\html目录下面 配置:D:ginx-1.18.0\confginx.conf文件 worker_processes 1;events { worker_connections 1024;}http { include mime.types; .
Vue2.0 配置反向代理 Vue2.0 配置反向代理找到config/index.js文件 找到dev下面的proxyTable:{}写入代码: proxyTable: { //定义/controller/*,注:controller叫什么都可以,但是下面要统一,'*'号必须要加 "/controller/*": { //将http://127.0.0.1:8088/印射为/controller target: "http://127.0.0.1:8090/", .
Nginx Windows 安装配置 下载Nginx:http://nginx.org/ 下载Windows版本 将nginx-1.18.0.zip拷贝到指定目录:D:ginx-1.18.0\ 解压缩nginx-1.18.0.zip文件:D:ginx-1.18.0\ 运行cmd,执行命令:cd/dD:ginx-1.18.0\ 运行 start nginx,执行时会一闪而过。 查看“任务管理器“-“详细信息”,能看到Nginx是否运行,运行成功。否则运行失败 查看D:ginx-1.18.0\logs\e.