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

The Multi-Scroll Table package provides a comprehensive solution for displaying a scrollable table in both vertical and horizontal directions. This package is ideal for scenarios where you need to dis [...]

example/lib/main.dart

import 'package:example/demo.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(
      title: 'Flutter Multi Scroll Table Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const DemoScreen(),
    );
  }
}
3
likes
140
points
59
downloads

Publisher

verified publishergeekyants.com

Weekly Downloads

The Multi-Scroll Table package provides a comprehensive solution for displaying a scrollable table in both vertical and horizontal directions. This package is ideal for scenarios where you need to display large amounts of data in a tabular format, while keeping the few columns as fixed for row indexing.

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_multi_scroll_table