excel_plus 2.2.0 copy "excel_plus: ^2.2.0" to clipboard
excel_plus: ^2.2.0 copied to clipboard

Fast, low-memory Excel (.xlsx) library for Dart and Flutter to read, create, edit, and style spreadsheets. A drop-in replacement for the excel package.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'app/theme.dart';
import 'pages/home_page.dart';

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

/// A small, focused demo of the excel_plus package: create a styled workbook,
/// export it, and read one back.
class ExcelPlusDemoApp extends StatelessWidget {
  const ExcelPlusDemoApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'excel_plus demo',
      debugShowCheckedModeBanner: false,
      theme: buildAppTheme(),
      home: const HomePage(),
    );
  }
}
37
likes
160
points
5.1k
downloads
screenshot

Documentation

API reference

Publisher

verified publisheralmasum.dev

Weekly Downloads

Fast, low-memory Excel (.xlsx) library for Dart and Flutter to read, create, edit, and style spreadsheets. A drop-in replacement for the excel package.

Repository (GitHub)
View/report issues

Topics

#excel #xlsx #spreadsheet #office #workbook

License

MIT (license)

Dependencies

archive, web, xml

More

Packages that depend on excel_plus