You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@capacitor/text-zoom

Package Overview
Dependencies
Maintainers
0
Versions
529
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capacitor/text-zoom

The Text Zoom API provides the ability to change Web View text size for visual accessibility.


Version published
Weekly downloads
17K
increased by43.29%
Maintainers
0
Created
Weekly downloads
 

Readme

Source

@capacitor/text-zoom

The 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"
  }
}

Install

npm install @capacitor/text-zoom
npx cap sync

API

get()

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.0


getPreferred()

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.0


set(...)

set(options: SetOptions) => Promise<void>

Set the current zoom level.

Zoom levels are represented as a decimal (e.g. 1.2 is 120%).

ParamType
optionsSetOptions

Since: 1.0.0


Interfaces

GetResult
PropTypeDescriptionSince
valuenumberThe current zoom level (represented as a decimal).1.0.0
GetPreferredResult
PropTypeDescriptionSince
valuenumberThe preferred zoom level (represented as a decimal).1.0.0
SetOptions
PropTypeDescriptionSince
valuenumberThe new zoom level (represented as a decimal).1.0.0

Keywords

FAQs

Package last updated on 10 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc