2016-07-22 1 views
0

나는 페이지 하단에Reactive Native : 제공된 파일로 스타일 시트를 직접 수정하는 방법?

https://github.com/skv-headless/react-native-scrollable-tab-view/blob/master/DefaultTabBar.js#L75

에서 'bottomBorderColor'을 변경하고 싶습니다.

은과 같이 시도하지만 불행히도 작동하지 않습니다
<ScrollableTabView 
     style={{borderBottomColor: 'white'}} 
    > 
     <Text tabLabel='Tab1'> Test 1 </Text> 
     <Text tabLabel='Tab2'> Test 2 </Text> 
     <Text tabLabel='Tab3'> Test 3 </Text> 
    </ScrollableTabView> 

미리 감사드립니다.

답변

0

borderBottomWidth 속성을 잊어 버린 것 같습니다. 당신은 다음과 같이 수행해야합니다

<ScrollableTabView 
 
    style={{borderBottomColor: 'white', borderBottomWidth: 3}} 
 
> 
 
    <Text tabLabel='Tab1'> Test 1 </Text> 
 
    <Text tabLabel='Tab2'> Test 2 </Text> 
 
    <Text tabLabel='Tab3'> Test 3 </Text> 
 
</ScrollableTabView>

+0

그것을 밖으로 시도하지만, 불행히도 이동 ... 그것은 다른 방법으로 이루어지지해야 하는가? –