0

I want to know that whether the <List> component being provided by native-base styling library can be an alternative for <ListView> component. I know that the the traditional listview by react-native is performance efficient so is the List component of native base also performance efficient.

2 Answers2

0

NativeBases List component is actually just a wrapper over React Native's ListView with some extra goodies included, so efficiency in terms of cell reuse, etc should be good.

See the source for List.

Jordan Duncan
  • 696
  • 4
  • 6
0

Check NativeBase Docs https://docs.nativebase.io/Components.html#list-def-headref

It says, List is deprecated

Supriya Kalghatgi
  • 1,155
  • 9
  • 10
  • Thanks for the info is there anyother List by nativebase which can be used for the purpose of dynamic rendering. – ashu bajpai Apr 27 '18 at 11:53