logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

React Native 引入 Sentry官方文档翻译

React NativeReact-Native SDK 为iOS 和Android使用了一个原生的扩展,但如果必要的话,可回退到纯JavaScript 版本.集成SDKSentry在程序运行时使用SDK捕获数据。这些都是特定于平台的,让Sentry能够深入了解您的应用程序是如何工作的。注意如果你使用的是expo-cli,你需要使用另一个SDK。查看:https:/...

#sentry#react native
使用Flutter inspector

注意:inspector 可以在 Flutter mobile 和 web 程序中工作.它是什么?Flutter小部件检查器是可视化和探索Flutter小部件树的强大工具。Flutter 框架使用组件作为核心构建模块,从控件 (例如text, buttons, 和 toggles), 到布局 (如居中, padding, rows, 和 columns). inspector帮助你可...

vs code 简易使用教程(前端)

一、常用设置:1、设置tab为2空格用户首选项 =》 设置 => 直接搜索editor.tabSize 设置为22、设置换行采用\n形式用户首选项 =》 设置=> 直接搜索files:eol进行设置为\n。如果映是\r\n了,可以通过下图的方式进行转换二、vs code 常用插件安装方法:点击vscode左侧扩展,搜索插件,点击安装Path In...

文章图片
#前端#vscode#ide
ora 使用教程

安装$ npm install ora使用const ora = require('ora');const spinner = ora('Loading unicorns').start();setTimeout(() => {spinner.color = 'yellow';spinner.text = 'Loading rainbows';}, 1000);APIora(text)ora

download-git-repo 使用教程

本文根据download-git-repo官方文档和个人阅读理解进行翻译。用node下载并提取一个git repository (GitHub, GitLab, Bitbucket)安装$ npm install download-git-repoAPIdownload(repository, destination, options, callback)下载一个 gitrepository到de

flutter 中如何使用hex设置颜色

flutter开发中,要设置颜色,其提供的Color只能够使用16进制,但UI提供给我们的一般是hex字符串,为了方便的使用hex,我们需要自己封装相关的转换方法。以下代码是参考stackoverflow的回答改造而来。class ColorUtil {/// String is in the format "aabbcc" or "ffaabbcc" with an optional...

flutter TabBarView 报Horizontal viewport was given unbounded height 错误

flutter TabBarView 没有跟Scaffold 一起使用的时候,容易报Horizontal viewport was given unbounded height 错误,例如将其作为Column的子元素,就会出现该错误。错误提示意思是水平视图高是无限的,这里由于是用在Column中,所以水平应该理解为垂直方向。解决该问题就是需要在其父级添加高度限制。例如在其外层包裹Expanded.

ios input 无法自动聚焦拉起手机键盘

ios input 无法自动聚焦拉起手机键盘

element plus el-radio-group 无法默认选中原因排查

element plus el-radio-group 无法默认选中原因排查

#vue.js#elementui
css多行文本超出显示省略号无效解决方法

css多行文本超出显示省略号,以2行为例,网上很多解决方法,如下。之前一直采用的是这种方法,最近发现无效了。vant也是这种写法,.txt-ellipsis-2 {display:-webkit-box;overflow: hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow: ellipsis;word-bre

#css
到底了