styled-component숫자값 props로 넘기기

코드깎는 노인·2020년 12월 2일
0

styled-component숫자값 props로 넘기기

presenter.tsx

<Modal marginTop={totlaHeight}>

style.ts

interface IProps {
  marginTop: number;
}

export const Modal = styled.View`
 margin-top: ${({marginTop}: IProps) =>
  marginTop ? `${marginTop - 150}px` : '0px'};
`;

[RN] View를 하단에 고정

 position: absolute;
 bottom: 0;
profile
내가 볼려고 만든 블로그

0개의 댓글