JagadishaIncture
JagadishaIncture
Screen A ` @Composable fun GroupsScreen( viewModel: GroupViewModel, baseViewModel: BaseViewModel, platformUtils: PlatformUtils, navigator: Navigator, localSharedStorage: LocalSharedStorage, showToolBar:Boolean=false ) { var isLoading by remember { mutableStateOf(false) } var isShimming by remember...
Screen B `@OptIn(ExperimentalAdaptiveApi::class) @Composable fun GroupsDetailScreen( navigator: Navigator, viewModel: GroupViewModel, platformUtils: PlatformUtils, id: String, showToolBar: Boolean = false ) { var isShimming by remember { mutableStateOf(false) } var data: List...
ToolBar code `@OptIn(ExperimentalAdaptiveApi::class) @Composable fun ToolBarWithBack(navigator: Navigator,title: String) { AdaptiveTopAppBar( title = { Text(title,style = StyleUtils.getBoldFontStyle()) }, navigationIcon = { Image(imageVector = Icons.Default.KeyboardArrowLeft, contentDescription = null, colorFilter = ColorFilter.tint(color =...
any solution her how to avoid api call when returning back to GroupsScreen?
you suggets me here `class GroupViewModel(private val mainUseCase: MainUseCase) : ViewModel() { val _uiState = MutableSharedFlow() fun getGroupPlace(currentPage: Int, pageCount: Int) { val groupPayloadModel = CategoryPayloadModel().apply { statusList = arrayListOf(Status.ACTIVE.name)...
Could not find com.veinhorn.scrollgalleryview:library:1.2.8. Required by: project :app
Looks like its not found in Maven Central as well
@VEINHORN atleast please share the aar file so that we can add it to libs folder. so that it will work for time being
@VEINHORN Iam not facing issue with Photoview. instead iam geting issue with scrollGaleryView sdk itself. which is unable to find in jitpack of mavenCentral
* What went wrong: Execution failed for task ':app:mergeDebugResources'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not find com.veinhorn.scrollgalleryview:library:1.2.8. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/veinhorn/scrollgalleryview/library/1.2.8/library-1.2.8.pom...