LazyColumn - Jetpack Compose
For this tutorial, we will be looking at creating a scrollable list inside a LazyColumn
If we wanted to display a large number of items or a list of an unknown length. Using a layout such as Column can cause performance issues, as all the items will be composed and laid out whether or not they are visible. At an app launch for example.