| Name | Role |
|---|---|
| Alex | Admin |
| Sam | Editor |
| Rae | Viewer |
StaticTable(
headers: const ['Name', 'Role'],
rows: const [
[Text('Alex'), Text('Admin')],
[Text('Sam'), Text('Editor')],
[Text('Rae'), Text('Viewer')],
],
)
StaticTable#
Use static tables for simple tabular content that does not need sorting or row state.
The live preview and code sample above use the neutral package:arcane_jaspr/arcane_jaspr.dart
API. The selected stylesheet owns spacing, density, radius, color, and interaction styling, so the same app code can render differently under Shadcn or Neon.
Source: lib/component/view/static_table.dart
See the Component Catalog for the full exported surface and source mapping.