You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StoryListView makes use of SectionList, which is new to ReactNative v0.43. We currently support a minimum version of 0.27, so that breaks a number of lower versioned users.
I'd suggest continued usage of ListView. While this will ultimately be deprecated in the future, we can operate with the proper foresight by creating a backward-compatible approach where it creates a ListView or SectionList depending on the platform support.
While ideal, an MVP of this would be to use a ListView.
The text was updated successfully, but these errors were encountered:
StoryListView makes use of SectionList, which is new to ReactNative
v0.43
. We currently support a minimum version of0.27
, so that breaks a number of lower versioned users.I'd suggest continued usage of
ListView
. While this will ultimately be deprecated in the future, we can operate with the proper foresight by creating a backward-compatible approach where it creates aListView
orSectionList
depending on the platform support.While ideal, an MVP of this would be to use a
ListView
.The text was updated successfully, but these errors were encountered: