Saltearse al contenido

List

ListView is a widget that provides a list view that you can use in your application.

Example

example_list.tsx
import { List } from '@vixen-js/core-react';
export function ListViewExample() {
return (
<List>
<ListItem title="First Item" />
<ListItem title="Second Item" />
</List>
);
}

Learn more about ListView