上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 44 下一页
摘要: 1、安装yarn add react-native-elements react-native-vector-icons 2、import {Icon} from ‘react-native-elements’ <Icon name=”roing” /> 注意: icon图标无法显示,需要配置 1) 阅读全文
posted @ 2022-08-29 14:16 龙卷风吹毁停车场 阅读(60) 评论(0) 推荐(0)
摘要: 放在index.js下AppRegistry.registerComponent(appName, () => App);之前 // 关闭黄色警告 console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use 阅读全文
posted @ 2022-08-29 14:14 龙卷风吹毁停车场 阅读(60) 评论(0) 推荐(0)
摘要: 官网地址: https://github.com/react-native-linear-gradient1.安装 yarn add react-native-linear-gradient 封装成简单的组件使用 使用 import THButton from '../../component/TH 阅读全文
posted @ 2022-08-29 14:13 龙卷风吹毁停车场 阅读(69) 评论(0) 推荐(0)
摘要: 在utils文件中新建styleKits.js import { Dimensions } from "react-native"; // 设计稿宽度 / 元素的宽度 = 手机屏幕 / 手机中的元素宽度 // =》 手机中的元素宽度 = 手机屏幕宽度 * 元素的宽度 / 设计稿的宽度 const s 阅读全文
posted @ 2022-08-29 14:00 龙卷风吹毁停车场 阅读(122) 评论(0) 推荐(0)
摘要: 新建一个request.js import axios from 'axios' import { BASE_URL } from './pathMap' const instance = axios.create({ baseURL: BASE_URL }) // 添加请求拦截器 instance 阅读全文
posted @ 2022-08-29 10:57 龙卷风吹毁停车场 阅读(504) 评论(0) 推荐(0)
摘要: /** * 开发环境下配置 * */ // webpack.config.js 配置文件 const { resolve } = require('path') // 安装node.js自带 const MtmlWebpackPlugin = require('html-webpack-plugin 阅读全文
posted @ 2022-07-07 17:31 龙卷风吹毁停车场 阅读(40) 评论(0) 推荐(0)
摘要: 找到hbuilderx安装目录:选择以管理员方式打开,在进行安装就ok了 阅读全文
posted @ 2022-07-07 10:58 龙卷风吹毁停车场 阅读(1161) 评论(0) 推荐(0)
摘要: 首先我们先认识一下常见个进制:在js中,如果要表示一个16进制的数字,则以 0x 开头如果是8进制的数字,则以 0 开头如果是2进制的数字,则以 0b 开头 举例: 16进制 0xff , 0x66 ..... 8进制 040 , 035 ..... 2进制 0b10 , 0b11 ..... 在j 阅读全文
posted @ 2022-06-28 18:33 龙卷风吹毁停车场 阅读(211) 评论(0) 推荐(0)
摘要: data(){ return{ data1: [] } }, created() { this.dsdd(7) }, methods:{ getDay(day) { var today = new Date(); var targetday_milliseconds = today.getTime( 阅读全文
posted @ 2022-05-27 18:16 龙卷风吹毁停车场 阅读(1630) 评论(0) 推荐(0)
摘要: ctx.setFillStyle("#FFFFFF") ctx.drawImage('../static/img/f9f0dd9c8da99e13546581ec1ea904c.png', 0, 0, 300,145) 在前面添加一个 ctx.setFillStyle("#FFFFFF") 阅读全文
posted @ 2022-03-24 17:45 龙卷风吹毁停车场 阅读(1204) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 44 下一页