Lona supports the following layer parameters to generate accessible UI components. These parameters are modeled after iOS and React Native accessibility support. Some parameters are static, some are dynamic, and some are both. Static parameters can be given a default value (at compile-time). Dynamic parameters can be assigned via Lona Logic (at runtime).
Type: one of "auto"
, "none"
, "element"
, "container"
. Default: "auto"
.
This configures overall the behavior of the layer. This parameter is unique to Lona and doesn't directly translate to any platform. Instead, Lona uses it to set other platform-specific parameters.
auto
- Use the platform default values for the layer. For example, Text layers automatically have theiraccessibilityLabel
set to the same value as the text. It's best to usenone
,element
, orcontainer
instead to explicitly define the behavior, rather than letting the platform guess.none
- The layer is hidden from assistive technologies.element
- This layer is focusable by assistive technologies. Lona Studio requires this to be set before it will reveal most of the other parameters (e.g.AccessibilityLabel
).container
- This contains accessible descendant layers. These can be configured by id using theaccessibilityElements
parameter.
Type: String
A screenreader reads this text when the user focuses the layer.
Type: String
A screenreader reads this text after reading the accessibilityLabel
and other information. This can suggest how the layer should be used, e.g. "double tap to add to cart".
Type: String
Use this when working with interactive controls. For example, a number input field would set the accessibilityValue
to the current number value.
Type: one of "none"
, "button"
, "link"
, "search"
, "image"
, "keyboardkey"
, "text"
, "adjustable"
, "imagebutton"
, "header"
, "summary"
These presets determine the high level behavior of the layer. Currently this list is taken from React Native and should handle mobile fairly well, but there may be more to add for web.
Type: Array<String>
This can be set after accessibilityType
has been set to container
. This is the list of descendant layers which assistive technologies should read. Any layer specified in this array will likely also need its own accessibilityType
set to elements
.
† - can only be assigned an array of hardcoded values. E.g. different conditional branches can assign different sets of hardcoded values. These are transformed at compile-time.
Type: Boolean
Use this for interactive controls that have selectable elements, e.g. a list of tabs. In a list of tabs, each tab will be focusable, but likely only one will be selected at any time.
Type: Boolean
Use this for interactive controls that can't currently be interactive with, e.g. a "submit" button in a form when some of the required fields are empty.
Type: Function<Void> -> Void
A callback for when an element is activated via keyboard or assistive technologies. This is analogous to onPress
, and should often do the same thing.