React Navigation에서 화면을 흐리게 처리하는 방법
화면 배경을 흐리게 하려면 먼저 화면을 투명하게 만들어야 합니다.
import { createStackNavigator } from 'react-navigation';
export default createStackNavigator(
{
HomeStack,
BlurModal,
},
{
...NAVIGATOR_CONFIG,
mode: 'modal',
cardStyle: { opacity: 1 },
transparentCard: true,
},
);
그런 다음 blurView를 배경으로 사용합니다.
import React from 'react';
import { BlurView } from '@react-native-community/blur';
import Styled from 'styled-components';
function BlurModal() {
return (
<BlurWrapper blurType="light" blurAmount={20}>
<Text>Modal with blur background</Text>
</BlurWrapper>
);
}
const BlurWrapper = Styled(BlurView)`
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
`;
Reference
이 문제에 관하여(React Navigation에서 화면을 흐리게 처리하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jetrockets/how-to-blur-a-screen-in-react-navigation-469g텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)