I've an AndroidView on my UI and I'm creating a custom view class using factory scope. And I've remember value above my android view which is changing by user a
I want to achieve a UI effect like this: <GridView> <Title of Grid content in a single row /> <Grid content arranged in the form of n * 3
I'm trying to make a search bar using BasicTextField. The default text color is black and I couldn't find any option to change the text color. Also I need to ch
I have svg image Url, I want to display the image in Jetpack Compose.
App crashes when trying to type in TextField that is in superclass (video: https://imgur.com/a/6RNc2mU) Exception: E/AndroidRuntime: FATAL EXCEPTION: main Proce
I have a list that includes Slider the problem is when I scroll the slider detecting the tap event and change it, see attached gif The excepted behavior is whe
I have a layout in Jetpack Compose where I have a couple of composables (text view and input) that I need to stay at the top of the screen, and then another com
When user type in TextField it will call onValueChange{} callback. but when we set the value in TextField the onValueChange{} callback will not call. I found ht
Can anyone suggest how to share a ViewModel within different sections of a Jetpack Compose Navigation? According to the documentation, viewModels should normall
I receive a uri in screen "A" by: val launcher = rememberLauncherForActivityResult(ActivityResultContracts.StartActivityForResult()) { activityResult ->
I am getting this error during compilation or code generation, I have set the Jetpack Compose dependencies and working on it, I have made some compose component
I am creating an app that makes use of a physical button on the device. This button will have a different functionality depending on the screen that is active.
How should be implemented requesting permission from Jetpack Compose View? I'm trying implement application accessing Camera with Jetpack Compose. I tried examp
I want to develop a LazyLayout in jetpack compose @ExperimentalFoundationApi @Composable fun LazyLayout( itemsProvider: LazyLayoutItemsProvider!, modifi
I have a BottomSheetScaffold inside my android app that looks like the following: BottomSheetScaffold( sheetGesturesEnabled = false, sheetConte
In official Material Design 3 resources (e.g. the Figma design kit), there have been many references to colors called "Surface at +x". These colors are the surf
Maybe someone can tell me how to set in Switch() size for TrackWidth, TrackStrokeWidth, ThumbDiameter Switch( modifier = Modifie
I'm getting the following error running observeAsState on a LiveData object after I upgraded Jetpack Compose to 1.0.0‑beta07. java.lang.NoSuchMethodError:
I've updated to Kotlin 1.5 last week, and after yesterday having seen the intention of Google to make Jetpack Compose the preferred option for designing UIs, I
I'm trying to make Kotlin's invoke operator a @Composable, everything works fine, until I add a parameter to it, which should have a default value. See the code