# GlassEffectConfiguration

Object of options for configuring the glass effect on a Titanium.UI.iOS.BlurView.

Availability
13.0.0
Extends
Object

NOTE

This is an abstract type. Any object of this structure can be used where this type is used.

# Overview

The parameters used when configuring a glass effect for a blur view. Glass effects are an alternative to classic blur views introduced in iOS 26, providing a more modern and visually appealing blur effect with additional customization options.

The glass effect requires at least the style property to be set. On iOS versions prior to 26, setting this property will have no effect.

# Properties

# interactive

Availability
13.0.0
interactive :Boolean

Whether the glass effect responds to user interaction.

When set to true, the glass effect will respond to touch and other user interactions, providing visual feedback. This can create a more dynamic and engaging user experience.

Default: false


# style

Availability
13.0.0
style :Number

The style of the glass effect.

Specifies the visual style of the glass effect. Different styles provide different levels of translucency and blur intensity.

Default: Titanium.UI.iOS.GLASS_EFFECT_STYLE_REGULAR


# tintColor

Availability
13.0.0
tintColor :String

The tint color to apply to the glass effect.

The tint color modifies the appearance of the glass effect. You can specify the color as a color name (e.g., "red"), a hex string (e.g., "#FF0000"), or an RGBA string (e.g., "rgba(255, 0, 0, 0.5)").

If not specified, the glass effect will use the default system appearance.