excel_to_json 1.5.1 copy "excel_to_json: ^1.5.1" to clipboard
excel_to_json: ^1.5.1 copied to clipboard

A Flutter package that converts Excel (.xlsx) files to JSON format with multiple worksheets support and comprehensive error handling.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home.dart';

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

class ExcelToJsonApp extends StatelessWidget {
  const ExcelToJsonApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Excel to JSON Converter',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      home: const Home(),
    );
  }
}
20
likes
160
points
341
downloads

Publisher

verified publishervitormelo.dev.br

Weekly Downloads

A Flutter package that converts Excel (.xlsx) files to JSON format with multiple worksheets support and comprehensive error handling.

Repository (GitHub)
View/report issues
Contributing

Topics

#excel #json #converter #spreadsheet #xlsx

Documentation

Documentation
API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

excel, file_picker, flutter

More

Packages that depend on excel_to_json