private async void _radialController_RotationChanged(RadialController sender,
                                                             RadialControllerRotationChangedEventArgs args)
        {
            if (args.RotationDeltaInDegrees > 0)
            {
                _currentEffect.IncreaseEffect();
            }
            else
            {
                _currentEffect.DecreaseEffect();
            }

            EffectValue.Text = _currentEffect.Value;

            await RenderAsync();
        }