logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【Vue】Vue学习资料

因项目需要,最近学习了前端开发Vue,主要参考材料:1、初识HTML+CSShttps://www.imooc.com/learn/92、vue.js教程https://www.runoob.com/vue2/vue-tutorial.html3、基于vue+vant搭建H5通用架子https://github.com/Ljhhhhhh/h5vue4、vant学习https://youzan.gi

【Vue】学习过程中用到的第三方插件

1、vant 移动端组件库 https://youzan.github.io/vant/#/zh-CN/2、Cookie 数据存储 https://www.npmjs.com/package/js-cookie3、vue-router 官方的路由管理器 https://router.vuejs.org/zh/4、axios 网络请求 https://www.kancloud.cn/yunye/ax

【Vue】MAC配置Vue环境并创建Vue项目

1、先安装Vuenpm install -g @vue/cli2、创建项目vue create hello-world3、启动项目npm run serve

【Flutter】使用BottomAppBar自定义bottomNavigationBar

使用Flutter原生的FloatingActionButton+BottomAppBar实现,配合Scaffold使用更舒服,适合不喜欢自己用Widget组合自定义BottomAppBar的小伙伴。实现思路为:1、自定义floatingActionButtonLocation控制FloatingActionButton的位置;2、自定义BottomAppBar的shape属性,绘制BottomA

#flutter
【iOS】ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using

ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.问题原因:OC和swift混编造成的解决方案:然后xcode打包,使用xcode上传

#ios#objective-c#swift +1
【iOS】ERROR ITMS-90208: “Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not supp

ERROR ITMS-90208: "Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."ERROR ITMS-90208: “Invalid Bundle. The bundle Run

#ios#objective-c#swift +1
【Flutter】OC集成Flutter

文章目录最终效果图如下1、创建OC项目2、添加cocoapods3、创建Flutter 工程在OCFlutter项目的相同路径上创建module4、在OCFlutter项目新建Config目录,在这个目录下新建3个配置文件Flutter.xccofig,内容如下:Debug.xccofig,内容如下:Release.xccofig,内容如下:5、修改OCFlutter配置关闭Bitcode修改运行

#flutter
到底了