Skip to content

Commit

Permalink
fix: add documentation for v1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed May 9, 2023
1 parent 26293ef commit 5526cb6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,11 @@
* Address issue with Android Gradle Versions


## 1.0.3

* Add automobile Logos
* Improve tests
* Fix minor bug and enhancements
* Add more daily logos
* Add more Tech logos

13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class MyApp extends StatelessWidget {
...AnyLogo.tech.values.map((e) => e.image()).toList(),
...AnyLogo.nfl.values.map((e) => e.image()).toList(),
...AnyLogo.media.values.map((e) => e.image()).toList(),
...AnyLogo.auto.values.map((e) => e.image()).toList(),
],
),
);
Expand Down Expand Up @@ -115,7 +116,7 @@ AnyLogo.uefa.manchesterUnited.image()
// int? cacheWidth,
// int? cacheHeight,
// All the variables are sill available
AnyLogo.nba.image(height: 30, fit: BoxFit.contain);
AnyLogo.nba.atlantaHawks.image(height: 30, fit: BoxFit.contain);
//You can still pass just the asset image without calling [.image()]
Expand All @@ -125,10 +126,12 @@ Image(image: AssetImage(AnyLogo.nba.atlanta.path)),
AnyLogo.uefa.acMilan
AnyLogo.uefa.barcelona
// Daily section contains everyday brands food related etc.. 🍟
// Daily section contains everyday brands food / travel / plane / agencies related etc.. 🍟
// Basically if you don't find a brand it could be in daily.
AnyLogo.daily.gillette
AnyLogo.daily.nutella
AnyLogo.daily.kellogs
AnyLogo.daily.lufthansa
// NFL section contains nfl teams 🏈
AnyLogo.nfl.nflArizonaCardinals
Expand Down Expand Up @@ -159,6 +162,12 @@ AnyLogo.cricket.cscs
AnyLogo.cricket.gurajatLions
AnyLogo.cricket.mumbaiIndians
// Car section contains car brands and makes 🏎️
AnyLogo.auto.bugatti
AnyLogo.auto.bmw
AnyLogo.auto.mercedesBenz
```

### Warning ⚠️
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.0.3"
flutter_lints:
dependency: "direct dev"
description:
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: >-
It covers, fashion. Sports, Entertainment, SocialMedia etc...
#Version to be released
version: 1.0.2
version: 1.0.3

#package homepage:
homepage: https://github.com/JordyHers/flutter_any_logo
Expand Down Expand Up @@ -50,6 +50,7 @@ dev_dependencies:
flutter:
assets:
- assets/nba/
- assets/auto/
- assets/football/
- assets/fashion/
- assets/cricket/
Expand Down

0 comments on commit 5526cb6

Please sign in to comment.