diff --git a/README.md b/README.md index e3eb195..c0c8a79 100644 --- a/README.md +++ b/README.md @@ -211,15 +211,16 @@ The `InternetConnection` class uses the following `Uri`s by default: The following `Uri`s are tested and work well with the package: -| URI | Description | -| :-------------------------------------------------- | :--------------------------------------- | -| `https://ipapi.co/ip` | CORS enabled, no-cache | -| `https://api.adviceslip.com/advice` | CORS enabled, no-cache | -| `https://api.bitbucket.org/2.0/repositories` | CORS enabled, no-cache | -| `https://api.thecatapi.com/v1/images/search` | CORS enabled, no-cache | -| `https://api.coindesk.com/v1/bpi/currentprice.json` | CORS enabled, no-cache | -| `https://lenta.ru` | Russia supported, CORS enabled, no-cache | -| `https://www.gazeta.ru` | Russia supported, CORS enabled, no-cache | +| URI | Description | +| :------------------------------------------- | :--------------------------------------- | +| `https://ipapi.co/ip` | CORS enabled, no-cache | +| `https://api.adviceslip.com/advice` | CORS enabled, no-cache | +| `https://api.bitbucket.org/2.0/repositories` | CORS enabled, no-cache | +| `https://api.thecatapi.com/v1/images/search` | CORS enabled, no-cache | +| `https://randomuser.me/api/?inc=gender` | CORS enabled, no-cache | +| `https://dog.ceo/api/breed/husky/list` | CORS enabled, no-cache | +| `https://lenta.ru` | Russia supported, CORS enabled, no-cache | +| `https://www.gazeta.ru` | Russia supported, CORS enabled, no-cache | ## If you liked the package, then please give it a [Like 👍🏼][package] and [Star ⭐][repository] diff --git a/example/lib/pages/custom_uris.dart b/example/lib/pages/custom_uris.dart index 4a00a85..551e9c4 100644 --- a/example/lib/pages/custom_uris.dart +++ b/example/lib/pages/custom_uris.dart @@ -34,7 +34,10 @@ class _CustomURIsState extends State { uri: Uri.parse('https://api.thecatapi.com/v1/images/search'), ), InternetCheckOption( - uri: Uri.parse('https://api.coindesk.com/v1/bpi/currentprice.json'), + uri: Uri.parse('https://randomuser.me/api/?inc=gender'), + ), + InternetCheckOption( + uri: Uri.parse('https://dog.ceo/api/breed/husky/list'), ), InternetCheckOption(uri: Uri.parse('https://lenta.ru')), InternetCheckOption(uri: Uri.parse('https://www.gazeta.ru')),