Package-level declarations

Types

Link copied to clipboard
class HomeScreenFragment : <ERROR CLASS> ERROR CLASS: Symbol not found for Fragment

Fragment that hosts the Home screen, fetching user info, account status, and account balance on resume and rendering MainScreen via Jetpack Compose.

Link copied to clipboard
class HomeScreenViewModel(defaultRepository: ERROR CLASS: Symbol not found for DefaultRepository, credentialStorage: CredentialStorage, settings: ERROR CLASS: Symbol not found for Settings, dispatchers: DispatcherProvider, sampleConfig: SampleConfig) : <ERROR CLASS> ERROR CLASS: Symbol not found for ViewModel

ViewModel for the Home screen, responsible for fetching and exposing basic user info, account holder status, and account balance from the MTN MOMO API.

Functions

Link copied to clipboard
fun MainScreen(modifier: ERROR CLASS: Symbol not found for Modifier = Modifier, navController: ERROR CLASS: Symbol not found for NavController??, snackStateFlow: ERROR CLASS: Symbol not found for SharedFlow<io/rekast/sdk/sample/utils/SnackBarComponentConfiguration>, showProgressBar: Boolean = false, basicUserInfo: ERROR CLASS: Symbol not found for MutableLiveData<ERROR CLASS: Symbol not found for BasicUserInfo?>, accountHolderStatus: ERROR CLASS: Symbol not found for MutableLiveData<ERROR CLASS: Symbol not found for AccountHolderStatus?>, accountBalance: ERROR CLASS: Symbol not found for MutableLiveData<ERROR CLASS: Symbol not found for AccountBalance?>)

Renders the Home screen displaying basic user info, account holder status, and account balance, or a progress indicator while data is loading.

Link copied to clipboard