private async void OnSendNormalMessagePressed(object sender, EventArgs e)
        {
            string recipientUuid = RecipientUuid.Text;
            string messageText   = Message.Text;

            MetaMessage textMessage = MessageUtils.ComposeNormalTextMessage(recipientUuid, messageText);

            await _connection.SendMessageAsync(textMessage);
        }