nova_grid 0.0.1 copy "nova_grid: ^0.0.1" to clipboard
nova_grid: ^0.0.1 copied to clipboard

retracted

A customizable Flutter data table

example/lib/main.dart

import 'package:example/tables/basic_grid.dart';
import 'package:example/tables/grid_with_custom_widget.dart';
import 'package:example/tables/table_with_pagination.dart';
import 'package:example/tables/table_with_stacked_header.dart';
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: NovaGridExamples());
  }
}

class NovaGridExamples extends StatelessWidget {
  const NovaGridExamples({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: SingleChildScrollView(
        child: Padding(
          padding: const EdgeInsets.all(10.0),
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.center,
            spacing: 10,
            children: [
              Text("Basic Table"),
              BasicGrid(),
              SizedBox(height: 10),
              Text("Table with Custom widgets"),
              GridWithCustomWidget(),
              SizedBox(height: 10),
              Text("Table with Stacked widgets"),
              TableWithStackedHeader(),
              SizedBox(height: 10),
              Text("Table with Pagnation"),
              TableWithPagination(),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
0
points
136
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter data table

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on nova_grid