From c0e367576698b7c2efe39be73844de4999c8db4c Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 2 Apr 2022 15:23:03 +1100 Subject: [PATCH] Update podfile.lock --- ios/Podfile.lock | 8 ++++---- lib/settings/about.dart | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 0ecaeec3..d78f9072 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -58,12 +58,12 @@ PODS: - SDWebImage (5.11.1): - SDWebImage/Core (= 5.11.1) - SDWebImage/Core (5.11.1) - - Sentry (6.2.1): - - Sentry/Core (= 6.2.1) - - Sentry/Core (6.2.1) + - Sentry (6.4.1): + - Sentry/Core (= 6.4.1) + - Sentry/Core (6.4.1) - sentry_flutter (0.0.1): - Flutter - - Sentry (~> 6.2.1) + - Sentry (~> 6.4.1) - shared_preferences (0.0.1): - Flutter - sqflite (0.0.2): diff --git a/lib/settings/about.dart b/lib/settings/about.dart index 13af3c35..8e05c8be 100644 --- a/lib/settings/about.dart +++ b/lib/settings/about.dart @@ -83,6 +83,7 @@ class InvenTreeAboutWidget extends StatelessWidget { title: Text(L10().address), subtitle: Text(InvenTreeAPI().baseUrl.isNotEmpty ? InvenTreeAPI().baseUrl : L10().notConnected), leading: FaIcon(FontAwesomeIcons.globe), + trailing: InvenTreeAPI().isConnected() ? FaIcon(FontAwesomeIcons.checkCircle, color: COLOR_SUCCESS) : FaIcon(FontAwesomeIcons.timesCircle, color: COLOR_DANGER), ) );