Add path_provider for elinux (#12)

Fixed #9
This commit is contained in:
Hidenori Matsubayashi
2021-08-03 10:47:25 +09:00
committed by GitHub
parent 0fe779fc3a
commit 1cc1269f51
24 changed files with 1311 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
# path\_provider\_elinux
The elinux implementation of [`path_provider`].
## Usage
### pubspec.yaml
```Yaml
dependencies:
path_provider: ^2.0.2
path_provider_elinux:
git:
url: https://github.com/sony/flutter-elinux-plugins.git
path: packages/path_provider_elinux
ref: ^1.0.0
```
### Source code
Import `path_provider_elinux` in your Dart code:
```Dart
import 'package:path_provider_elinux/path_provider_elinux.dart';
```