Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
object Constants

Contains constant values used throughout the MTN MOMO SDK sample application.

Link copied to clipboard
class DefaultDispatcherProvider @Inject constructor : DispatcherProvider
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@Serializable
data class SnackBarComponentConfiguration(val message: String = "", val actionLabel: String? = null, val duration: SnackbarDuration = SnackbarDuration.Short) : Serializable
Link copied to clipboard
@Serializable
data class SnackBarThemeOptions(val messageTextColor: String = "#FFFFFF", val actionTextColor: String = "#FFE400", val backgroundColor: String = "#EB9779") : Serializable
Link copied to clipboard
object Utils

Utility object providing various helper functions for the MTN MOMO SDK sample application.

Functions

Link copied to clipboard

This is required to fix keyboard overlapping content in a Composable screen. This functionality is applied after the setContent function of the activity is called.

Link copied to clipboard
suspend fun SharedFlow<SnackBarComponentConfiguration>.hookSnackBar(scaffoldState: ScaffoldState, action: () -> Unit = {})
Link copied to clipboard

This function checks if the device is online

Link copied to clipboard

Parse this String to a color code to be used in compose. Color code must either a). begin with pound sign ('#') and should be of 6 valid characters or b). be equal to 'primaryColor', 'primaryVariantColor' or 'errorColor'