@cb @Manuel Vivo @Sean McQuillan [G]
Hello
I downloaded the Jetcaster app from compose-samples and I found an error as shown in the video
java.lang.IllegalArgumentException: Layout size for current item is 0
at com.google.accompanist.pager.PagerState$scrollableState$1.invoke(PagerState.kt:182)
But I solved the error by placing
if (featuredPodcasts.isNotEmpty()) featuredPodcasts.size else 1
at Home, the error was resolved
Is this a good solution?