Version: v6On this page@capacitor/text-zoomThe Text Zoom API provides the ability to change Web View text size for visual accessibility.Note: text-zoom plugin won't work on iPads unless preferredContentMode configuration is set to mobile in your Capacitor configuration file.{ "ios": { "preferredContentMode": "mobile" }}Installnpm install @capacitor/text-zoomnpx cap syncAPIget()getPreferred()set(...)Interfacesget()get() => Promise<GetResult>Get the current zoom level.Zoom levels are represented as a decimal (e.g. 1.2 is 120%).Returns: Promise<GetResult>Since: 1.0.0getPreferred()getPreferred() => Promise<GetPreferredResult>Get the preferred zoom level.Zoom levels are represented as a decimal (e.g. 1.2 is 120%).Returns: Promise<GetPreferredResult>Since: 1.0.0set(...)set(options: SetOptions) => Promise<void>Set the current zoom level.Zoom levels are represented as a decimal (e.g. 1.2 is 120%).ParamTypeoptionsSetOptionsSince: 1.0.0InterfacesGetResultPropTypeDescriptionSincevaluenumberThe current zoom level (represented as a decimal).1.0.0GetPreferredResultPropTypeDescriptionSincevaluenumberThe preferred zoom level (represented as a decimal).1.0.0SetOptionsPropTypeDescriptionSincevaluenumberThe new zoom level (represented as a decimal).1.0.0