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

Commit 031bdd5

Browse files
authored
Change plugin descriptions to be consistent (#14)
1 parent de8a5c7 commit 031bdd5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

packages/path-provider/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ To use this plugin, add path_provider as a [dependency in your pubspec.yaml file
1212
After importing ```'package:path_provider/path_provider.dart'``` the directories can be queried as follows
1313

1414
``` dart
15-
Directory tempDir = await getTemporaryDirectory();
16-
String tempPath = tempDir.path;
15+
Directory tempDir = await getTemporaryDirectory();
16+
String tempPath = tempDir.path;
17+
18+
Directory appDocDir = await getApplicationDocumentsDirectory();
19+
String appDocPath = appDocDir.path;
20+
```
1721

18-
Directory appDocDir = await getApplicationDocumentsDirectory();
19-
String appDocPath = appDocDir.path;
20-
```
2122
Please see the example app of this plugin for a full example.

packages/path-provider/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: path_provider
22

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

packages/url-launcher/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: url_launcher
22

33
version: 0.3.1
4-
description: Flutter plugin for launching a URL
4+
description: A Flutter plugin for launching a URL
55
author: Flutter Team <[email protected]>
66
homepage: https://github.com/flutter/plugins
77

0 commit comments

Comments
 (0)