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

Fast, low-memory Excel (.xlsx/.xls) library for Dart & Flutter to read, create, edit and style spreadsheets, charts, formulas and CSV. A faster drop-in 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(),
    );
  }
}
43
likes
0
points
8.38k
downloads

Publisher

verified publisheralmasum.dev

Weekly Downloads

Fast, low-memory Excel (.xlsx/.xls) library for Dart & Flutter to read, create, edit and style spreadsheets, charts, formulas and CSV. A faster drop-in for the excel package.

Repository (GitHub)
View/report issues

Topics

#excel #xlsx #xls #spreadsheet #workbook

License

unknown (license)

Dependencies

archive, csv_plus, web, xml

More

Packages that depend on excel_plus