Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
0 votes
1 answer
441 views

I hava Row with .horizontalScroll(scrollState) and I need to implement show and hide Row items animation. I need it so that when it is necessary to hide elements, they all collapse into one element ...
testivanivan's user avatar
  • 1,544
1 vote
1 answer
137 views

I have Row with .horizontalScroll() and I need bounce animation effect. That is, when the list appears, it scrolls forward a little, and then returns back. At the same time, I need a spring effect ...
testivanivan's user avatar
  • 1,544
0 votes
1 answer
66 views

i have a code: Row( modifier = Modifier .fillMaxWidth() .background(Color.Black) .paint( painter = painterResource(resource = Res.drawable.toolbar_background), ...
onesector's user avatar
  • 471
3 votes
0 answers
1k views

I have a Row and the content inside it. What I want to do here is, when I slide the Row to the left, the delete and edit button will appear. I could not apply this to my code. I looked at some third ...
NewPartizal's user avatar
  • 1,298
3 votes
2 answers
2k views

I'm trying to place two texts inside a Row, one nailed to the left edge, the other to the right. Moreover, if the left text is too long, it should not overlap the right text, but should be wrapped on ...
testivanivan's user avatar
  • 1,544
0 votes
1 answer
420 views

I have a Column something like this @Composable fun ScreenView(verticalScroll: ScrollState = rememberScrollState()){ Column( modifier = Modifier .padding(16.dp) ....
Vivek Modi's user avatar
  • 7,859
0 votes
1 answer
53 views

I'm trying to position elements in my Row like this: text first, immediately followed by an icon, and a second icon that should be nailed to the end (right edge). Here is a visual example of what it ...
testivanivan's user avatar
  • 1,544
2 votes
2 answers
1k views

I want to make row like this Expected Output AND I tried this piece of code DividerWithItem @Composable fun DividerWithItem( modifier: Modifier = Modifier, index: () -> Int, itemName: ...
Vivek Modi's user avatar
  • 7,859
2 votes
1 answer
303 views

I have a ScrollableRow with lets say 5 fullscreen composables. ScrollableRow( modifier = Modifier.fillMaxSize(), scrollState = scrollState) { myData.items.forEachIndexed{ index, ...
Edna Krabappel's user avatar
0 votes
2 answers
884 views

I have a shopping list item composable that is not taking up the entire width of the parent, as you can see below with the red border. I want it to be flush against the parent's edge. And why is there ...
Raj Narayanan's user avatar
2 votes
0 answers
6k views

I built a composable which is basically a Row containing an address as Text and a Button alongside it. The address contains a label within it (e.g. 'Bill To: ') and to format it slightly differently I ...
devanshu_kaushik's user avatar
2 votes
1 answer
4k views

I have this row with two buttons and one divider. I had set the weight so the buttons can have the same width. Row(modifier = Modifier .fillMaxWidth() .padding(horizontal = 5.dp) .height(...
juske's user avatar
  • 310
6 votes
2 answers
2k views

@Composable fun TopAppBar( name: String, modifier: Modifier = Modifier ) { Row( modifier = modifier .fillMaxWidth() .padding(20.dp, 0.dp), ...
Chinmay's user avatar
  • 504