flutter_multi_scroll_table 0.0.1
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(),
);
}
}