so I have two composables that I would like to add...
# compose
o
so I have two composables that I would like to add to the screen, a TopAppBar that stays at the top, and under it another element if I add them sequentially one after the other (without specifying a column for them to sit in), the top bar appears at the top, and the header appears in the center if I specify a colum, the top bar still appears at the top but now the header stops appearing
Copy code
Column {
    TopAppBarSearch(
        searchText = searchState.searchText,
        placeholderText = stringResource(id = R.string.search_for_a_city),
        showClearButton = searchState.showClearButton,
        showProgressBar = searchState.showProgressBar,
        matchesFound = searchState.cities.isNotEmpty(),
        onSearchTextChanged = { viewModel.onSearchTextChanged(it) },
        onClearClick = { viewModel.onClearClick() },
        onNavigateBack = { navigateBack() },
        onEmptySearchResults = { NoSearchResults() },
        onSearchResults = {
            Cities(cities = searchState.cities) { city ->
                viewModel.selectLocation(city)
                navigateBack()
            }
        }
    )

    AnimatedVisibility(
        visible = !searchState.isNetworkError
                && !searchState.isOtherError
                && searchState.cities.isEmpty(),
        enter = fadeIn(),
        exit = fadeOut()
    ) {
            MyLocationHeader {
                viewModel.selectCurrentLocation()
            }
    }
}