flutter_basic_table 2.0.1
flutter_basic_table: ^2.0.1 copied to clipboard
A comprehensive and customizable table widget for Flutter with Map-based column management, sorting, selection, theming, and interactive features.
// 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,
);
}
}
copied to clipboard