strLoadingText top-level property

String strLoadingText
getter/setter pair

Centralized string constants for UI labels, messages, and storage keys.

Contains all user-facing strings used throughout the application, including:

  • Loading states
  • API error messages
  • Authentication UI labels
  • Task management labels
  • Error messages
  • Storage keys for GetStorage

Using centralized strings enables:

  • Easy localization/internationalization
  • Consistent messaging across the app
  • Single source of truth for UI text
  • Simplified updates to user-facing content

Example usage:

Text(strLoadingText); // "Loading..."
showError(toastSessionExpired); // "Your session has expired..."
storage.write(isLoggedIn, true); // Save login state

Loading indicator text shown during async operations.

Implementation

// MARK: - App Strings

// MARK: - Loading States

/// Loading indicator text shown during async operations.
String strLoadingText = "Loading...";