React native?
В RN нет как таковых классов. Так что нет, к тому же что для тебя hover в мобильном мире?
<Pressable style={({ pressed }) => [ { backgroundColor: pressed ? 'rgb(210, 230, 255)' : 'white' }, styles.wrapperCustom ]}> {({ pressed }) => ( <Text style={styles.text}> {pressed ? 'Pressed!' : 'Press Me'} </Text> )} </Pressable>
Обсуждают сегодня