Hi! I am trying to achieve something like this - a...
# compose
m
Hi! I am trying to achieve something like this - a camera icon on top of a circular image, I already have the circular image in place, but I am not sure how to place the icon on top of it using compose. Any ideas or helpful links are appreciated. Thanks!
v
you can use
ConstraintLayout
for that
🙏 1
l
With some details excluded, general gist is:
Copy code
Box {
  Image()
  Icon(Modifier.align(Alignment.TopEnd))
}
🙏 1