EconoShowApp

fun EconoShowApp(windowSize: WindowWidthSizeClass, navController: NavHostController = rememberNavController(), modifier: Modifier = Modifier)

The main app

This is where a majority of the app functionality occurs. It controls the app's view model, ui state, content type, and navigation.

Parameters

windowSize

Used to determine the general layout of the based on the device's size

navController

Sets up a NavHostController so that the NavHost can function. Does not need to be set.

modifier

The Modifier to be applied to this component.