https://github.com/defuncart/steamgriddb
A dart client for steamgriddb.com
https://github.com/defuncart/steamgriddb
dart dartlang flutter steamgriddb
Last synced: 3 months ago
JSON representation
A dart client for steamgriddb.com
- Host: GitHub
- URL: https://github.com/defuncart/steamgriddb
- Owner: defuncart
- License: mit
- Created: 2024-02-29T17:02:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-29T19:40:54.000Z (over 1 year ago)
- Last Synced: 2025-01-18T22:47:21.753Z (4 months ago)
- Topics: dart, dartlang, flutter, steamgriddb
- Language: Dart
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# steamgriddb
A dart client for steamgriddb.com
```dart
final sgdb = SteamGridDB(apiKey);
final searchResults = await sgdb.getGamesBySearchTerm('half life');
if(searchResults.isNotEmpty) {
final gameId = searchResults.first.id.toString();
final grids = await sgdb.getCoversForGame(gameId);
}
```This package is not affiliated with Valve Corporation nor the Steam platform.