WelcomeScreen

@Composable
fun WelcomeScreen(    onCreateAccountButtonClick: () -> Unit,     onLoginButtonClick: () -> Unit,     vectorArtCards: List<VectorArtCard> = defaultExamerVectorArtCards)

A stateless implementation of Welcome Screen.

Parameters

onCreateAccountButtonClick

the action to perform when create account button is pressed.

onLoginButtonClick

the action to perform when login button is pressed.

vectorArtCards

optional param that defines the cards that are to be displayed as a carousel. Defaults to defaultExamerVectorArtCards which contains a list of default vector art cards.