Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
publish at pub.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
donguseo committed May 20, 2020
1 parent 98919e7 commit 64c048c
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ example/build
example/.vscode

.dart_tool/

.history/
2 changes: 1 addition & 1 deletion .packages
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by pub on 2020-05-20 19:55:41.853662.
# Generated by pub on 2020-05-20 20:12:11.237175.
archive:file:///Users/donguseo/development/flutter/.pub-cache/hosted/pub.dartlang.org/archive-2.0.11/lib/
args:file:///Users/donguseo/development/flutter/.pub-cache/hosted/pub.dartlang.org/args-1.5.2/lib/
async:file:///Users/donguseo/development/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.4.0/lib/
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.0.1
## [0.0.1] initial commit
## [0.1.0] publish at pub.dev

* TODO: Describe initial release.
26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
# heic_to_jpg

A new flutter plugin project.
With this plugin you can convert HEIC/HEIF file to JPEG image easily

## Getting Started
## Installation
Add the Package
```yaml
dependencies:
heic_to_jpg: ^0.1.0
```

This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
## How to use

For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
Import the package in your dart file

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

##
And call convert method with local HEIC/HEIF image file path.
```dart
String jpegPath = await HeicToJpg.convert(heicPath);
```
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: heic_to_jpg
description: with this library you can convert HEIC/HEIF file to JPEG image easily
description: With this library you can convert HEIC/HEIF file to JPEG image easily
version: 0.1.0
author:
homepage:
author: donguseo<dongu0406@gmail.com>
homepage: https://github.com/donguseo/flutter_heic_to_jpg

environment:
sdk: ">=2.1.0 <3.0.0"
Expand Down

0 comments on commit 64c048c

Please sign in to comment.