摘要: 生成 provider dependencies: build_runner: ^2.7.1, freezed_annotation: ^3.1.0 dev_dependencies: custom_lint: riverpod_lint: ^3.0.3 riverpod_generator: ^3 阅读全文
posted @ 2025-11-20 16:20 小小强学习网 阅读(3) 评论(0) 推荐(0)
摘要: 直接编译运行Flutter项目是没问题的,但是单独打开Android项目进行编译却报错了。 Multiple build operations failed. Could not create task ':file_selector_android:generateDebugUnitTestCon 阅读全文
posted @ 2025-11-06 16:34 小小强学习网 阅读(19) 评论(0) 推荐(0)
摘要: import 'package:android_intent_plus/android_intent.dart'; import 'package:android_intent_plus/flag.dart'; try { final AndroidIntent launcherIntent = A 阅读全文
posted @ 2025-10-30 19:22 小小强学习网 阅读(17) 评论(0) 推荐(0)
摘要: Task :simpleDemo:processDebugMainManifest FAILED E:\uniappPack\4.36\HBuilder-Integrate-AS\simpleDemo\src\main\AndroidManifest.xml:11:9-24:20 Error: an 阅读全文
posted @ 2025-09-18 16:54 小小强学习网 阅读(23) 评论(0) 推荐(0)
摘要: document.execCommand 已被废弃,现在我们如何与剪贴板交互? 复制到剪贴板”是一个极为常见的web功能。多年来,我们一直依赖一个略显“古老”的 API——document.execCommand('copy')。它曾是我们的得力助手,但现在,它已经被正式标记为废弃(Deprecat 阅读全文
posted @ 2025-06-21 11:52 小小强学习网 阅读(173) 评论(0) 推荐(0)
摘要: 新建store.js // store/index.js import { createStore } from 'vuex'; const store = createStore({ state() { return { count: 0, userInfo: null, name:"hq" }; 阅读全文
posted @ 2025-04-11 08:23 小小强学习网 阅读(161) 评论(0) 推荐(0)
摘要: 新建store.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { count: 0, clist:[1,2,3,4,6,6,7,8,9,0], 阅读全文
posted @ 2025-04-11 08:06 小小强学习网 阅读(116) 评论(0) 推荐(0)
摘要: 参考地址:https://chuna2.787528.xyz/mahmud/p/17784975.html <div ref="statsSection" class="stats-section"> <div class="numdiv"> <div class="numdivc xq-flex-cb 阅读全文
posted @ 2024-10-27 15:36 小小强学习网 阅读(277) 评论(0) 推荐(0)
摘要: git:https://gitee.com/brownshrike/captcha-mini npm install captcha-mini <el-form-item prop="vercode"> <el-input v-model="formData.code" autocomplete=" 阅读全文
posted @ 2024-10-27 11:08 小小强学习网 阅读(330) 评论(0) 推荐(0)
摘要: devServer: { open: true, host: '0.0.0.0', port: 8000, proxy: { '/api': { target: '网址', changeOrigin: true, pathRewrite: { '^/api': '' }, headers: { ho 阅读全文
posted @ 2024-09-28 17:07 小小强学习网 阅读(187) 评论(0) 推荐(0)