Skip to content

Instantly share code, notes, and snippets.

@pauloaapereira
Created March 18, 2021 19:01
Show Gist options
  • Save pauloaapereira/29e6ebcc4d427ac9fc46784f82e59b55 to your computer and use it in GitHub Desktop.
Save pauloaapereira/29e6ebcc4d427ac9fc46784f82e59b55 to your computer and use it in GitHub Desktop.
AndroidDevChallenge_Week4_JetWeatherfy_2
@Composable
fun Curtain(
isOpenedFromOutside: Boolean? = null,
foldingDuration: Int = 250,
mainCell: @Composable () -> Unit,
foldCells: List<@Composable () -> Unit>
) {
var isOpened by remember { mutableStateOf(false) }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment