What are the Side Effects of Jetpack Compose? While working with Composable Functions, they often get recomposed on a change of state. When Functions propose it might update some data that is not in the cope of the composable functions. Such Scenarios are called Side Effects. For e.g. Making a network call inside a Compose Function which...