
React Native
Taozi825232603
这个作者很懒,什么都没留下…
展开
-
【React Native组件】带Mask背景的底部菜单(可展开/收缩)
import React, { Component } from 'react';import { View, StyleSheet, Animated, PanResponder, TouchableWithoutFeedback } from 'react-native';const CONTAINER_HEIGHT = 600;const calculateInterval = (min, max, value) => { return Math.max(Math.min(m.原创 2021-07-27 16:11:06 · 435 阅读 · 0 评论 -
【React Native演示】Mask遮罩Demo
import React, { useState } from 'react';import { Text, View, Pressable } from 'react-native';const Cat = () => { const [count, setCount] = useState(0); const [bottomCount, setBottomCount] = useState(0); return ( <View style={{ flex.原创 2021-07-24 22:02:59 · 1024 阅读 · 0 评论 -
【React Native组件】垂直Slider
import React, { useState, useRef } from 'react';import { Text, View, PanResponder} from 'react-native';const VIEW_HEIGHT = 300;const TRACK_HEIGHT = 260;const THUMB_HEIGHT = 30;const TRACK_LENGTH = TRACK_HEIGHT - THUMB_HEIGHT;const MARGIN_VERTICAL =.原创 2021-07-23 23:17:18 · 450 阅读 · 0 评论