Nativebase: Docs: How to position multiple buttons on the same line?

Created on 25 Jul 2017  路  6Comments  路  Source: GeekyAnts/NativeBase

react-native, react and native-base version

RN: 0.44.9
React: 15.0.27
Native Base 2.3.0

Expected behaviour

Docs show how buttons are put on same or different lines

Actual behaviour

Example in docs has some buttons on same line, but code doesn't match buttons and there's no indication of how to get them on the same line. (E.g. the Icon Buttons example image shows several more buttons than are in the example code, and some are on the same line, but there's no code difference for these buttons.)

Most helpful comment

Thanks - with flexDirection:

      <View style={{flexDirection: "row"}}>

However, is there a Native Base way to do it, or am I expected to use View here?

Per https://github.com/GeekyAnts/NativeBase/issues/1004, Content is apparently supposed to be one-per-page, and Container causes whatever it wraps to take up the vertical space of one full screen, so without restyling it can't be used for layout like this.

All 6 comments

How would you position any other element in the same line?

Thanks - with flexDirection:

      <View style={{flexDirection: "row"}}>

However, is there a Native Base way to do it, or am I expected to use View here?

Per https://github.com/GeekyAnts/NativeBase/issues/1004, Content is apparently supposed to be one-per-page, and Container causes whatever it wraps to take up the vertical space of one full screen, so without restyling it can't be used for layout like this.

There is no NativeBase way of aligning elements. You can use View with flex for that.

@sankhadeeproy007 ok, thank you very much for the responses.

How to add 3 buttons below the table??

Hi @Manik1987-commit , please explain a little bit more.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

aloifolia picture aloifolia  路  3Comments

maphongba008 picture maphongba008  路  3Comments

eggybot picture eggybot  路  3Comments

inv2004 picture inv2004  路  3Comments

Cotel picture Cotel  路  3Comments