https://github.com/sharmadhiraj/developer_app_list
Flutter package to fetch and list apps developed by a given developer from the App Store and Play Store.
https://github.com/sharmadhiraj/developer_app_list
app-store dart flutter package play-store scraper sdk utility widget
Last synced: 5 days ago
JSON representation
Flutter package to fetch and list apps developed by a given developer from the App Store and Play Store.
- Host: GitHub
- URL: https://github.com/sharmadhiraj/developer_app_list
- Owner: sharmadhiraj
- License: apache-2.0
- Created: 2024-04-04T12:15:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T05:48:10.000Z (over 1 year ago)
- Last Synced: 2025-03-28T21:38:59.910Z (6 months ago)
- Topics: app-store, dart, flutter, package, play-store, scraper, sdk, utility, widget
- Language: Dart
- Homepage: https://pub.dev/packages/developer_app_list
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Developer App List
A Flutter package to fetch a list of apps developed by a given developer from both the App Store and
Play Store.### Features
- Retrieve a list of Android apps developed by a specific developer.
- Retrieve a list of iOS apps developed by a specific developer.### Installation
To use this package, add `developer_app_list` as
a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/packages-and-plugins/using-packages).```yaml
dependencies:
developer_app_list: ^0.0.1
```### Usage
```dart
import 'package:developer_app_list/developer_app_list.dart';void main() async {
// Example usage to fetch Android apps
List androidApps = await DeveloperAppList.getAndroidApps(developerId: 'developer_id');
//Eg. https://play.google.com/store/apps/dev?id=developerId// Example usage to fetch iOS apps
List iosApps = await DeveloperAppList.getIosApps(developerId: 'developer_id');
//https://apps.apple.com/us/developer/developer-name/developerId
}
```Replace 'developer_id' with the actual developer ID whose apps you want to fetch.
The **App** class represents an application and contains the following properties:
`id`: Unique identifier of the app.
`name`: Name of the app.
`category`: Category of the app.
`developerName`: Name of the developer who created the app.
`rating`: Rating of the app.
`imageUrl`: URL of the app's image.
`url`: URL of the app.### Feedback and Contributions
This is the first version of the package, and I am actively working on adding new features and
improvements. If you have any feedback, suggestions, or queries, feel free to reach out. Happy
coding!