谢朋刚
07/08/2025, 2:25 AM@Composable fun Modifier.floatAction(): Modifier = this.align(Alignment.BottomEnd)
Does it need to be changed to:
@Composable fun BoxScope.floatAction(): Modifier = Modifier.align(Alignment.BottomEnd) // this is wrong
Or use Kotlin's context parameters feature.Jordi Saumell
07/08/2025, 8:09 AM