https://kotlinlang.org logo
Title
u

user

06/21/2022, 12:31 PM
Align a composable view to right side inside a Row Composable like alignParentRight I'm building a custom composable function view inside which I used Row composable, however I want to align the right icon to right end of the Row(align to the end of the parent) below is my code: Row(modifier = Modifier .fillMaxWidth() .wrapContentHeight() .padding(vertical = Spacing30), verticalAlignment = Alignment.CenterVertically) { Icon(modifier = Modifier.padding(vertical = 14.dp), painter = painterResource(id = R.drawable.ic_wallet),...