Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danemadsen/most_common_user_agents
https://github.com/danemadsen/most_common_user_agents
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danemadsen/most_common_user_agents
- Owner: danemadsen
- License: mit
- Created: 2024-12-12T01:37:21.000Z (11 days ago)
- Default Branch: main
- Last Pushed: 2024-12-12T01:44:01.000Z (11 days ago)
- Last Synced: 2024-12-12T02:08:56.740Z (11 days ago)
- Language: Dart
- Size: 0 Bytes
- 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
A package for fetching the most common user agents
## Features
Fetch the most common user agents for mobile and desktop devices.
## Usage
A simple usage example:
```dart
import 'package:most_common_user_agents/most_common_user_agents.dart';void main() async {
final mobile = await UserAgents.mostCommonMobile;
print(mobile);final desktop = await UserAgents.mostCommonDesktop;
print(desktop);
}
```