Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kawaljeet Singh authored May 15, 2020
1 parent 3cf7931 commit d4c46e0
Showing 1 changed file with 35 additions and 8 deletions.
43 changes: 35 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,44 @@ Please consider donating if you think excel is helpful. I will be happy if you c

[Excel](https://www.pub.dev/packages/excel) is a flutter and dart library for creating and updating excel-sheets for XLSX files.

## Usage

### Adding dependency in pubspec.yaml
# Installing

````dart
### 1. Depend on it
Add this to your package's `pubspec.yaml` file:

```yaml
dependencies:
excel: ^1.0.4
excel: ^1.0.5
```
### 2. Install it
You can install packages from the command line:
with `pub`:

```css
$ pub get
```

with `Flutter`:

```css
$ flutter packages get
```

### 3. Import it

Now in your `Dart` code, you can use:

````dart
import 'package:excel/excel.dart';
````


# Usage

### Imports

````dart
Expand Down Expand Up @@ -75,7 +102,7 @@ dependencies:

````

### Read XLSX Flutter's Asset Folder
### Read XLSX from Flutter's Asset Folder

````dart
import 'package:flutter/services.dart' show ByteData, rootBundle;
Expand Down Expand Up @@ -262,13 +289,13 @@ key | description
## Features coming in next version
On-going implementation for future:
- Find and Replace
- Add row / column from Iterables
- Formulas
- Font Family
- Text Size
- Italic
- Underline
- Bold
- Add row / column from Iterables

## Help us to keep going.

Expand Down

0 comments on commit d4c46e0

Please sign in to comment.