5

I do not know how to put button at top right most corner of the screen in jetpack compose.Please help me with the code?

I have added button but it is showing at the centre of the screen

z.g.y
  • 5,512
  • 4
  • 10
  • 36

1 Answers1

6

Can you try this?

@Composable
fun MyScreen() {
    Box(
        modifier = Modifier.fillMaxSize()
    ){
        Button(
            modifier = Modifier.align(Alignment.TopEnd),
            onClick = {}
        ) {
            Text("A Button")
        }
    }
}

enter image description here

z.g.y
  • 5,512
  • 4
  • 10
  • 36