Mustafa Ünlü
Mustafa Ünlü
Hello @tahaak67 . I list a composable item in Lazycolumn. When I add Modifier.showcase() to this item, the showcase appears in the last indexed item on the screen. It should...
``` @Composable fun App() { var finishedSubsequentShowcase by remember { mutableStateOf(false) } var isShowcasing by remember { mutableStateOf(false) } var lineThinckness by remember { mutableStateOf(5) } MyTheme(useDarkTheme = false) {...
> ```kotlin > val myModifier = if (index == 0) Modifier.showcase( > index = 1, > message = ShowcaseMsg( > "This is a showcase message", > textStyle = TextStyle(color =...
same issue