“Разделение в React Native” Ответ

горизонтальный разделитель реагирует нативно

<View
  style={{
    borderBottomColor: 'black',
    borderBottomWidth: 1,
  }}
/>
Create a snippet
Joyous Jackal

Как вставить разделитель в Native Native

import { Divider } from 'react-native-elements';
<Divider orientation="horizontal" />;
<Divider orientation="vertical" width={5} />;
<Divider inset={true} insetType="middle" />;
<Divider  orientation="horizontal"  subHeader="Test"  subHeaderStyle={{ color: 'blue' }}/>;
Disgusted Dugong

Разделение в React Native

<View style={styles.divider}/>
//add this to your styles
  divider:{
    borderBottomColor:"black",
      borderBottomWidth:1
  }
Homely Heron

Ответы похожие на “Разделение в React Native”

Вопросы похожие на “Разделение в React Native”

Больше похожих ответов на “Разделение в React Native” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования