-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from vitoramaral10/feature/change_excel_plugin
Feature/change excel plugin
- Loading branch information
Showing
8 changed files
with
196 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
a | ||
# Contributing | ||
|
||
## How to contribute | ||
|
||
Want to contribute to the project? We will be proud to highlight you as one of our collaborators. Here are some points where you can contribute and make excel to json even better. | ||
|
||
- Helping to translate the readme into other languages. | ||
- Adding documentation to the readme (a lot of Get's functions haven't been documented yet). | ||
- Write articles or make videos teaching how to use Get (they will be inserted in the Readme and in the future in our Wiki). | ||
- Offering PRs for code/tests. | ||
- Including new functions. | ||
|
||
Any contribution is welcome! | ||
|
||
## Code of Conduct | ||
|
||
Please read our [Code of Conduct](CODE_OF_CONDUCT.md) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,35 @@ | ||
# excel_to_json | ||
# Excel to Json | ||
|
||
A package that converts `XLSX` files to `JSON` files. | ||
|
||
## Warning | ||
|
||
This project only recognizes `XLSX` files and converts them into json files. | ||
|
||
## Installation | ||
|
||
```bash | ||
flutter pub add excel_to_json | ||
``` | ||
THIS PROJECT DON'T RECOGNIZE EXCEL FORMULES | ||
|
||
## Usage | ||
|
||
```dart | ||
import 'package:excel_to_json/excel_to_json.dart'; | ||
void main() { | ||
final excelToJson = ExcelToJson(); | ||
String? excel = await excelToJson.convert(); | ||
} | ||
``` | ||
|
||
If you know how to solve this problem, please help this project. | ||
## License | ||
|
||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | ||
|
||
A package that allows you to transform your excel to the following format: | ||
1. Excel To JSON | ||
## Community | ||
|
||
## Getting Started | ||
### How to contribute | ||
|
||
At current the package allows you to use the following function (note: currently xlsx file type gives not perfect results):<br /> | ||
# 1.convert()<br /> | ||
- automatically lets you pick an excel file and returns a string containing the entire converted json | ||
<br /> | ||
For implementation have a look at the attached example file in the github repository.<br /> | ||
We welcome contributions to this project. Please read the [Contributing Guidelines](CONTRIBUTING.md) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.