티스토리 뷰
안녕하세요 강정호입니다.
오늘은 인스타그램클론코딩에서 검색창 UI 개발 관련하여 포스팅을 작성 해볼게요.
UI 작성시에는 styled-component를 주로 사용합니다.
UserCard.js
UserCard는 아래와 같이 검색했을 때 각 유저의 프로필 사진과, 이름, 팔로잉 버튼을 카드형식으로 보여주는 것입니다.
const Card = styled.div`
${props => props.theme.whiteBox}
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
`;
const EAvatar = styled(Avatar)`
margin-bottom: 15px;
`;
const ELink = styled(Link)`
color: inherit;
margin-bottom: 10px;
`;
** ${props => props.theme.whiteBox}
Card 컴포넌트를 호출할 때 부모 컴포넌트의 theme을 props로 받아서 설정하는 것이다.
이 theme은 App.js 에서 <ThemeProvider theme={Theme} > 에서 파라메터로 받아서 가져온 것이다.
styled-components.com/docs/advanced
Section.js
/** Section div를 생성 */
const Section = styled.div`
margin-bottom: 15px;
display: grid;
grid-gap: 25px;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 160px;
grid-auto-rows: 160px;
`;
'프로젝트' 카테고리의 다른 글
[인스타그램클론코딩] #10.1 Preloading Assets (0) | 2021.01.24 |
---|---|
[인스타그램클론코딩] #10.0 Creating the Project 프로젝트 환경설정 (0) | 2021.01.24 |
[인스타그램클론코딩] #7.4 toggleLike on Post Component(useMutation 사용) (0) | 2020.12.16 |
[인스타그램클론코딩] #7.3 Post Component part Three 슬라이더 기능 추가 (0) | 2020.12.14 |
[인스타그램클론코딩] #7.2 Post Component part Two (0) | 2020.12.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 깃허브
- resize
- 유즈케이스
- 개발자 회고
- 항해솔직후기
- 인셉션
- 관계대수
- 폭포수
- Inception
- 깃
- 도커
- Spring boot
- github
- 월부닷컴
- push_back
- 월급쟁이부자들
- 항해플러스백엔드
- 파라메터
- 내년은 빡세게!!
- 부동산공부
- 2023년
- 열반스쿨기초반
- 항해플러스후기
- front
- 재테크공부
- docker
- GIT
- ```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
- Use case
- pop_back
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함