<mvc:View
    controllerName="${ez5.appName}.controller.${ez5.controllerName}"
    height="100%"
    xmlns="sap.m"
    xmlns:f="sap.f"
    xmlns:mvc="sap.ui.core.mvc">
    <f:DynamicPage toggleHeaderOnTitleClick="false">
        <f:title>
            <f:DynamicPageTitle>
                <f:heading>
                    <FlexBox
                        alignItems="Center"
                        fitContainer="true"
                        wrap="Wrap">
                        <Title
                            class="sapUiTinyMarginEnd"
                            text="Employee More Details"
                            wrapping="true" />
                    </FlexBox>
                </f:heading>
                <f:navigationActions>
                    <OverflowToolbarButton
                        icon="sap-icon://nav-back"
                        press="handleCloseToList"
                        tooltip="Back To List"
                        type="Transparent" />
                    <OverflowToolbarButton
                        id="enterFullScreenBtn2"
                        icon="sap-icon://full-screen"
                        press="handleFullScreen"
                        tooltip="{i18n>ez5_enter_full}"
                        type="Transparent"
                        visible="{= ${fclModel>/actionButtonsInfo/endColumn/fullScreen} !== null }" />
                    <OverflowToolbarButton
                        id="exitFullScreenBtn2"
                        icon="sap-icon://exit-full-screen"
                        press="handleExitFullScreen"
                        tooltip="{i18n>ez5_exit_full_}"
                        type="Transparent"
                        visible="{= ${fclModel>/actionButtonsInfo/endColumn/exitFullScreen} !== null }" />
                    <OverflowToolbarButton
                        icon="sap-icon://decline"
                        press="handleClose"
                        tooltip="{i18n>ez5_close_end}"
                        type="Transparent"
                        visible="{= ${fclModel>/actionButtonsInfo/endColumn/closeColumn} !== null }" />
                </f:navigationActions>
            </f:DynamicPageTitle>
        </f:title>
        <f:content>
            <VBox class="sapUiMediumMargin">
                <ObjectStatus
                    text="{employeeModel>/EmployeeId}"
                    title="Employee ID" />
                <ObjectStatus
                    text="{employeeModel>/Email}"
                    title="Email" />
                <ObjectStatus
                    text="{employeeModel>/Phone}"
                    title="Phone" />
                <ObjectStatus
                    text="{employeeModel>/Address}"
                    title="Address" />
                <Text text="This page is intended to show additional employee details." />
            </VBox>
        </f:content>
    </f:DynamicPage>
</mvc:View>
