react native backdrop:用于本机React的背景组件 源码
React本机背景 使用针对Android和iOS的材料指南构建的React Native Backdrop组件 | | | 安装 $ npm install react-native-backdrop --save 用法 import { Backdrop } from "react-native-backdrop" ; const App = ( ) => { const [ visible , setVisible ] = useState ( false ) ; const handleOpen = ( ) => { setVisible ( true ) ; } ; const handleClose = ( ) => { setVisible ( false ) ; } ; return ( < > < View s
下载地址
用户评论