private void ShareWithCabify_Clicked(object sender, EventArgs e)
        {
            var share    = new LocationWith();
            var position = new Position(-18.9141075f, -48.2670119f);

            share.Cabify(position);
        }
        private void ShareWithUber_Clicked(object sender, EventArgs e)
        {
            var share = new LocationWith();

            share.Uber(new Position(-18.9141075f, -48.2670119f, "Amil Saúde"));
        }