vivla_data_grid 0.0.2 vivla_data_grid: ^0.0.2 copied to clipboard
A new VIVLA package with a data table for reservations.
VivlaDataGrid #
VivlaDataGrid is a lightweight Flutter package that wraps the DataTable
widget into a more flexible and user-friendly component. It's perfect for applications requiring a clean and organized way to display tabular data.
Features #
- Easy to configure and integrate.
- Customizable columns, rows, and overall table styling.
- Cross-platform compatibility with all Flutter-supported platforms.
- Lightweight implementation with no additional dependencies.
Usage Example #
With just a few lines of code, you can display a data table in your Flutter application:
import 'package:vivla_data_grid/vivla_data_grid.dart';
VivlaDataGrid(
columns: const [
DataColumn(label: Text('ID')),
DataColumn(label: Text('Name')),
DataColumn(label: Text('Age')),
],
rows: const [
DataRow(cells: [
DataCell(Text('1')),
DataCell(Text('John')),
DataCell(Text('30')),
]),
DataRow(cells: [
DataCell(Text('2')),
DataCell(Text('Anna')),
DataCell(Text('25')),
]),
DataRow(cells: [
DataCell(Text('3')),
DataCell(Text('Luis')),
DataCell(Text('40')),
]),
],
);