Skip to content

Commit e0eb452

Browse files
committed
v0.1.1 Release
*Document API Methods.
1 parent 6901e06 commit e0eb452

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3+
## 0.1.1
4+
- Document API Methods.
5+
36
## 0.1.0
4-
- Initial release.
7+
- Initial Release.
58

69
## 0.0.1
710
- Initial Prerelease.

lib/loading_gifs.dart

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
library loading_gifs;
22

3+
/// CupertinoActivityIndicator GIF asset path.
4+
/// ```dart
5+
/// Image.asset(cupertinoActivityIndicator);
6+
/// ```
37
const String cupertinoActivityIndicator =
48
"packages/loading_gifs/assets/images/cupertino_activity_indicator.gif";
9+
10+
/// CircularProgressIndicator GIF asset path.
11+
/// ```dart
12+
/// Image.asset(circularProgressIndicator);
13+
/// ```
514
const String circularProgressIndicator =
615
"packages/loading_gifs/assets/images/circular_progress_indicator.gif";

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: loading_gifs
2-
description: Loading indicator GIFs. Cupertino and Material style loading indicators in various sizes. Placeholder for loading remote image assets.
3-
version: 0.1.0
2+
description: Loading indicator GIFs. Material and Cupertino (Android and iOS) loading indicators in assorted sizes. Use as placeholders for loading remote image assets.
3+
version: 0.1.1
44
homepage: https://codelessly.com
55
repository: https://github.com/Codelessly/FlutterLoadingGIFs
66
issue_tracker: https://github.com/Codelessly/FlutterLoadingGIFs/issues

0 commit comments

Comments
 (0)