LocalAiutaPlatformContext

Android implementation of LocalAiutaPlatformContext.

On Android, this property delegates to Compose's LocalContext, providing access to the Android Context within Compose UI components. This allows the Aiuta SDK to access Android-specific functionality and resources.

See also

AiutaPlatformContext

Composition local for accessing the Aiuta platform context within Compose UI.

This composition local provides access to the platform-specific context required by the Aiuta SDK. The implementation varies by platform:

  • Android: Provides access to Android Context via LocalContext

  • Other platforms: Provides a static instance for platforms without context requirements

See also

Non-Android implementation of LocalAiutaPlatformContext.

For platforms other than Android, this provides a static composition local that defaults to AiutaPlatformContext.INSTANCE. This allows the Aiuta SDK to work on platforms that don't require platform-specific context.

See also