Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danemadsen/most_common_user_agents


https://github.com/danemadsen/most_common_user_agents

Last synced: 11 days ago
JSON representation

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);
}
```