Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Change plugin descriptions to be consistent #14

Merged
merged 1 commit into from
May 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions packages/path-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ To use this plugin, add path_provider as a [dependency in your pubspec.yaml file
After importing ```'package:path_provider/path_provider.dart'``` the directories can be queried as follows

``` dart
Directory tempDir = await getTemporaryDirectory();
String tempPath = tempDir.path;
Directory tempDir = await getTemporaryDirectory();
String tempPath = tempDir.path;

Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
```

Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
```
Please see the example app of this plugin for a full example.
2 changes: 1 addition & 1 deletion packages/path-provider/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: path_provider

version: 0.1.0
description: a Flutter plugin for getting commonly used locations on the filesystem.
description: A Flutter plugin for getting commonly used locations on the filesystem.
author: Flutter Team <[email protected]>
homepage: https://github.com/flutter/plugins

Expand Down
2 changes: 1 addition & 1 deletion packages/url-launcher/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: url_launcher

version: 0.3.1
description: Flutter plugin for launching a URL
description: A Flutter plugin for launching a URL
author: Flutter Team <[email protected]>
homepage: https://github.com/flutter/plugins

Expand Down