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
We need to add a List component, resembling that seen in the screenshot above.
The screenshot is of Bootstrap's ListGroup.
The idea is for this list container to render a collection of items.
These items may be actions (or links) or non-actionable content.
The items may be border separated, they may not. The list may be bordered, it may not.
List may serve as the base UI for FlatList, where FlatList would be responsible for things like windowing, drag sorting, etc...
Note: We currently have a List component. However, this one is more like an enhanced ul/ol. We can refactor that to be something like UnorderedList and OrderedList.
The text was updated successfully, but these errors were encountered:
We need to add a
List
component, resembling that seen in the screenshot above.The screenshot is of Bootstrap's ListGroup.
The idea is for this list container to render a collection of items.
These items may be actions (or links) or non-actionable content.
The items may be border separated, they may not. The list may be bordered, it may not.
The best example may be Ant Design's List component:
https://ant.design/components/list/
Another good example would be Material UI's List component:
https://material-ui.com/components/lists/
List
may serve as the base UI forFlatList
, whereFlatList
would be responsible for things like windowing, drag sorting, etc...Note: We currently have a
List
component. However, this one is more like an enhancedul
/ol
. We can refactor that to be something likeUnorderedList
andOrderedList
.The text was updated successfully, but these errors were encountered: