摘要: .类名{ ... overfolw-y:auto; height:50px; &::-webkit-scrollbar{ display:none; } //firefox scrollbar-width:none; //IE 10+ -ms-overflow-style:none; } 阅读全文
posted @ 2020-07-16 16:28 偷懒的求知者 阅读(157) 评论(0) 推荐(0)
摘要: 1.首先执行npm install @ant-design/react-native --save2.拷贝node_modules\@ant-design\icons-react-native\fonts到\android\app\src\main\assets目录下(如果没有文件夹就新建) 阅读全文
posted @ 2020-06-01 18:23 偷懒的求知者 阅读(1608) 评论(0) 推荐(0)
摘要: 1.连接git并关联远程分支 git init //初始化 git remote add 项目地址 //连接远程git git checkout -b 分支名 //创建并切换到本地分支 git fetch //拉取远程分支信息 git checkout -b 本地分支名 origin/远程分支名 / 阅读全文
posted @ 2020-05-27 10:03 偷懒的求知者 阅读(51) 评论(0) 推荐(0)