리액트 네이티브 누를 수 있는 하이라이트
2828 단어 mobileiosandroidreactnative
여기에서 코드를 찾을 수 있습니다snack.
요구 사항:
PressableHighlight 구성 요소
export default function PressableHighlight(props) {
return (
<Pressable
android_ripple={{
color: '#676B5F',
}}
style={({ pressed }) => [
Platform.select({
ios: {
backgroundColor: pressed ? 'rgba(0,0,0,0.1)' : 'transparent',
},
}),
props.style,
]}>
{props.children}
</Pressable>
);
}
android_ripple은 잔물결 색상을 허용하는 객체를 사용합니다. onPress 이벤트는 backgroundColor를 변경하는 데 사용할 수 있습니다. 이 경우 누를 때는 불투명도가 10%이고 비활성 상태일 때는 투명합니다.
Reference
이 문제에 관하여(리액트 네이티브 누를 수 있는 하이라이트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nyashanziramasanga/react-native-pressablehighlight-4f7p텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)