Redshop의 헤더

· 9년 전 · 1416

탑에는 

 

react-native-vector-icons 를 사용해서 Menu, login, shopping cart와 sir theme 로고를 만들어 봤습니다.

 

https://github.com/oblador/react-native-vector-icons 

에서 세가지와

http://fontawesome.io/icon/bars/ 

http://fontawesome.io/icon/user/ 

http://fontawesome.io/icon/shopping-cart/ 

레드샵의 로고(png)을 이용했습니다.

 

먼저 아래 코드와 같이 import를 해 주시고..

제일 위 header​에 대한 크기를 정해 줍니다.  (여기서는 높이를 50으로..)

marginTop 20은 스마트폰의 상단 status bar에 겹치지 않게 하기 위해서..

 

다음에 navigator를 이용해서 각 아이콘에 대해서 연결해 주면 될것 같습니다.

 

9b0d795078ab2c47ef4a451eab43b05c_1480291658_8059.png
 

 

[code]

import Icon from 'react-native-vector-icons/FontAwesome';

 

<View style={{ alignItems: 'center', margin: 2, marginTop: 20, backgroundColor: 'red', height: 50, flexDirection: 'row'}}>

          <View style={{flex: 1, justifyContent: 'flex-start', flexDirection: 'row'}}>

            <Icon name = 'navicon' color='black' size={32} style={{color: 'white', padding: 2}} />

          </View>

          <ResponsiveImage source={require('./images/mobile_logo.png')} initWidth="200" initHeight="30"/>

          <View style={{flex: 1, justifyContent: 'flex-end', flexDirection: 'row'}}>

            <Icon name='user' color='black' size={32} style={{color: 'white', padding: 2}} />

            <Icon name='shopping-cart' color='black' size={32} style={{color: 'white', padding:2}} />

          </View>

</View>

[/code]

 

|
댓글을 작성하시려면 로그인이 필요합니다.

앱개발

+
분류 제목 글쓴이 날짜 조회
9년 전 조회 1,626
9년 전 조회 1,849
9년 전 조회 1,602
9년 전 조회 1,801
9년 전 조회 2,533
9년 전 조회 1,746
9년 전 조회 1,222
9년 전 조회 1,511
9년 전 조회 2,004
9년 전 조회 1,463
9년 전 조회 1,754
9년 전 조회 1,345
9년 전 조회 1,245
9년 전 조회 1,417
9년 전 조회 1,417
9년 전 조회 1,260
9년 전 조회 1,220
9년 전 조회 1,377
9년 전 조회 1,930
9년 전 조회 1,017
9년 전 조회 961
9년 전 조회 1,572
9년 전 조회 1,282
9년 전 조회 1,331
9년 전 조회 1,032
9년 전 조회 1,271
9년 전 조회 1,246
9년 전 조회 1,409
9년 전 조회 1,250
9년 전 조회 1,201