Exemplo n.º 1
0
        private void OnButtonClicked(object sender, EventArgs args)
        {
            try
            {
                if (isLabelTeal)
                {
                    Color color = Color.Default;
                    switch (Device.RuntimePlatform)
                    {
                    case Device.iOS:
                        color = Color.Black;
                        break;

                    case Device.Android:
                        color = Color.White;
                        break;

                    case Device.UWP:
                        color = Color.Red;
                        break;
                    }

                    ShadowEffect.SetColor(label, color);
                    isLabelTeal = false;
                }
                else
                {
                    ShadowEffect.SetColor(label, Color.Teal);
                    isLabelTeal = true;
                }
            }
            catch (Exception ex)
            {
                ExceptionLogger.LogException(ex);
            }
        }