flutter_basic_table 1.0.1 copy "flutter_basic_table: ^1.0.1" to clipboard
flutter_basic_table: ^1.0.1 copied to clipboard

A comprehensive and customizable table widget for Flutter with sorting, selection, theming, and interactive features.

example/lib/main.dart

// example/lib/main.dart - 간단한 앱 진입점
import 'package:flutter/material.dart';

import 'screens/home_screen.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Basic Table Demo',
      theme: ThemeData(
        primarySwatch: Colors.grey,
        useMaterial3: true,
      ),
      home: const HomeScreen(),
      debugShowCheckedModeBanner: false,
    );
  }
}
1
likes
0
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive and customizable table widget for Flutter with sorting, selection, theming, and interactive features.

Repository (GitHub)
View/report issues

Topics

#table #widget #data-table #responsive #customizable

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_basic_table