private async void Image_Click()
        {
            ShowImagePopUp ImagePopupview = new ShowImagePopUp();

            ImagePopupview.BindingContext = this;
            await ShowPopup(ImagePopupview, false);
        }
        private async void Image_Click(messages messageList)
        {
            ShowImagePopUp ImagePopupview = new ShowImagePopUp();

            ImagePopupview.BindingContext = this;
            displayImage = messageList.MsgImageUrl;
            await ShowPopup(ImagePopupview, false);
        }