Skip to content

Commit

Permalink
Dexcom environment switching success message update
Browse files Browse the repository at this point in the history
Feature: #248 - Update Dexcom environment switching success message from "Changed URL successfully" to "Dexcom environment has been changed successfully"
  • Loading branch information
lijogeorgep authored and josmilan committed Dec 6, 2023
1 parent 7c018fd commit 6954dd1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DexcomCredentailController extends BaseController{
prefs.setString('dexcomStoredBaseUrl', BuildConfig.instance.config.dexComBaseUrl!);
_dexcomController.dexComBaseUrl.value =
BuildConfig.instance.config.dexComBaseUrl!;
Get.rawSnackbar(message: 'Changed url successfully',backgroundColor: Colors.green);
Get.rawSnackbar(message: 'Dexcom environment has been changed successfully',backgroundColor: Colors.green);
}

Future<void> limitedDexcomEnvironment() async {
Expand All @@ -48,6 +48,6 @@ class DexcomCredentailController extends BaseController{
_dexcomController.dexComBaseUrl.value = 'https://api.dexcom.com';

print('changed url${_dexcomController.dexComBaseUrl.value}');
Get.rawSnackbar(message: 'Changed url successfully',backgroundColor: Colors.green);
Get.rawSnackbar(message: 'Dexcom environment has been changed successfully',backgroundColor: Colors.green);
}
}

0 comments on commit 6954dd1

Please sign in to comment.