Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add docs for dynamic font scaling #3111

Merged
merged 37 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f05e854
add first draft of docs
liamdebeasi Sep 7, 2023
2ef4ef2
clarity
liamdebeasi Sep 7, 2023
a9c4033
typo
liamdebeasi Sep 7, 2023
cf55ded
add more troubleshooting/guidance
liamdebeasi Sep 8, 2023
9e2fb3d
add demo
liamdebeasi Sep 8, 2023
0512a89
add clarification on how modes are implemented
liamdebeasi Sep 8, 2023
35fa744
add note on switching modes
liamdebeasi Sep 8, 2023
1d497f6
typos
liamdebeasi Sep 8, 2023
1ad12ab
lint
liamdebeasi Sep 8, 2023
b7d4ef9
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 8, 2023
80e48a6
clarify android settings
liamdebeasi Sep 8, 2023
d16510a
open demo in a new tab to avoid iframe issues
liamdebeasi Sep 8, 2023
c105df8
update ios instructions
liamdebeasi Sep 8, 2023
b37af9d
add troubleshooting
liamdebeasi Sep 8, 2023
d0f06cd
lint
liamdebeasi Sep 8, 2023
d94841f
link to ems vs rems
liamdebeasi Sep 11, 2023
0ed0b00
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
ae4f3b7
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
7263c8a
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
cbe79e4
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
bf423b5
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
175036f
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
338b473
clarify ionic behavior
liamdebeasi Sep 11, 2023
a4ad895
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
075b66f
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
83aca72
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
e9a79a3
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
5afefa5
Update docs/layout/dynamic-font-scaling.md
liamdebeasi Sep 11, 2023
7eac2a3
use checklist
liamdebeasi Sep 11, 2023
ab09deb
remove slash
liamdebeasi Sep 11, 2023
1997d20
Revert "open demo in a new tab to avoid iframe issues"
liamdebeasi Sep 11, 2023
85f54d0
clarify browser behavior
liamdebeasi Sep 11, 2023
03febb1
make under the hood info a note
liamdebeasi Sep 11, 2023
a9e1238
clarify length units
liamdebeasi Sep 11, 2023
a5c09e6
lint
liamdebeasi Sep 11, 2023
46083a6
update troubleshooting point to be reflect browser behavior
liamdebeasi Sep 11, 2023
b0360df
clarify integration custom components section
liamdebeasi Sep 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
204 changes: 204 additions & 0 deletions docs/layout/dynamic-font-scaling.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
# Dynamic Font Scaling

Dynamic Font Scaling is a feature that allows users to choose the size of the text displayed on the screen. This helps users who need larger text for better readability, and it also accommodates users who can read smaller text.

Dynamic Font Scaling is supported on Android, iOS, and iPadOS starting in Ionic v7.5.

## Try It Out

:::tip
Be sure to try this on an Android, iOS, or iPadOS device.
:::

Follow the [Changing the Font Size on a Device](#changing-the-font-size-on-a-device) guide to set your preferred font size, and watch the text in the demo linked below grow or shrink according to your preferences.

<a href="/docs/usage/v7/layout/dynamic-font-scaling/demo.html" target="_blank">Launch Dynamic Font Scaling Demo</a> (opens in a new tab)

## Enabling Dynamic Font Scaling in Ionic

:::info
This feature is currently opt-in on iOS. However, it will be enabled by default starting in Ionic 8 at which point the following CSS will no longer be necessary.
:::

Dynamic Font Scaling is already enabled by default on Android. Developers can enable it on iOS by setting the following CSS globally:

```css
html {
--ion-dynamic-font: var(--ion-default-dynamic-font);
}
```

Under the hood, Ionic sets the following CSS on iOS devices to enable Dynamic Font Scaling:
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

```css
html {
font: var(--ion-dynamic-font);
}
```

Developers should ensure that the [typography.css](./global-stylesheets#typographycss) file is imported.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

## Using Dynamic Font Scaling

### Integrating Custom Components

Developers can configure their custom components to take advantage of Dynamic Font Scaling by converting any pixel font sizes to use [rem units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units#lengths). An easy way to convert from `px` to `rem` is to divide the pixel font size by the default browser font size, which is typically 16px.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

For example, if a component has a font size of `14px`, then this could be converted to `rem` by doing `14px / 16px = 0.875rem`.

Developers should also audit their applications and make any other changes necessary to support larger font sizes. One thing to keep in mind is that the dimensions of your components may need to change to accommodate the larger font sizes. As a result, it may be necessary to change properties such as `width` and `height` to `min-width` and `min-height`. We also recommend having long text wrap to the next line instead of truncating to keep large text readable.
brandyscarney marked this conversation as resolved.
Show resolved Hide resolved

Also note that any Ionic components that have had their font sizes overridden should also be updated to use `rem` units.

### Custom Font Family

We recommend using the default fonts in Ionic as they are designed to look good at any size and ensure consistency with other mobile apps. However, developers can use a custom font family with Dynamic Font Scaling via CSS:

```css
html {
--ion-dynamic-font: var(--ion-default-dynamic-font);
--ion-font-family: 'Comic Sans';
}
```

### `em` units versus `rem` units

Developers have two options for relative font sizes: `em` and `rem`.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

`em` units set the font size of an element relative to the font size of its parent.

In the following example, the computed font size of `.child` is `40px` because it is a child of `.parent` (2em \* 20px = 40px).
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

```css
.parent {
font-size: 20px;
}

.child {
font-size: 2em;
}
```

However, the `em` unit has a compounding effect which can cause issues. In the following example, the second `.child` element has a computed font size of `80px` since the font sizes compound.

```html
<div class="parent">
Parent element with 20px
<div class="child">
Child element with 40px
<div class="child">Child element with 80px</div>
</div>
</div>
```

<div style={{ fontSize: '20px' }}>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we put this in a playground demo with just a javascript example? I know you don't need ionic for this, so we could override the index file and keep it simple.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that may be overkill since that's going to show you Angular, React, and Vue code snippets which really aren't need. The purpose of this is to demonstrate how part of CSS works.

Parent element with 20px
<div style={{ fontSize: '2em' }}>
Child element with 40px
<div style={{ fontSize: '2em' }}>Child element with 80px</div>
</div>
</div>

Due to this compounding effect, we strongly recommend using `rem` units instead of `em` units when working with Dynamic Font Scaling. `rem` units set the font size of an element relative to the font size of the root element, which is typically `<html>`. The default font size of the root element is typically `16px`.

In the following example, the computed font size of `.child` is `32px` because the font size is being computed relative to `html`, not `.parent`.

```css
.parent {
font-size: 20px;
}

.child {
font-size: 2rem;
}
```

## How Dynamic Font Scaling works in Ionic

All Ionic components that define font sizes use [rem units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units#lengths). This sizes the text in each component relative to the font size of the root element, which is usually the `html` element. This means that as the root element's font size changes, the text in all Ionic components scale in a consistent manner. This avoids the need to manually override each component's font size.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

### iOS

Dynamic Font Scaling in Ionic builds on top of an iOS feature called [Dynamic Type](https://developer.apple.com/documentation/uikit/uifont/scaling_fonts_automatically#overview). To do this, Ionic sets the [font](https://developer.mozilla.org/en-US/docs/Web/CSS/font) of the root element to an Apple-defined text style. For consistency, Ionic uses the [body](https://developer.apple.com/documentation/uikit/uifont/textstyle/1616682-body) text style.

Using the Apple-defined text style enables Dynamic Type, allowing all text in Ionic components to scale according to the system-level preference. Note that these Apple-defined fonts only work on Apple devices. As a result, these fonts will not work on Android devices even if your app is using `'ios'` mode.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

Ionic follows [Apple's Human Interface Guidelines for Typography](https://developer.apple.com/design/human-interface-guidelines/typography) when an app is in `'ios'` mode. As a result, important content is prioritized when the text size changes. This means a few things:
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

1. Content in an `ion-header` or an `ion-footer` will have maximum font sizes to prioritize text in `ion-content` which is deemed more important than text in `ion-header` and `ion-footer`.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved
2. Components such as `ion-badge` and `ion-back-button` will have minimum font sizes so they remain readable.
3. Text in components such as `ion-tab-bar` and `ion-picker` do not participate in Dynamic Font Scaling according to Apple's Human Interface Guidelines.

### Android
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm confused by this entire section. We aren't using min, max or clamp on Android values in Ionic and this section is under How Dynamic Font Scaling works in Ionic. Would this be better suited as info under Using Dynamic Font Scaling or a section with info on how the different devices / operating systems handle dynamic scaling?

Copy link
Contributor Author

@liamdebeasi liamdebeasi Sep 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Our APIs are built on top of the browser behavior, so how Ionic behaves is influenced by the browser behavior which is why I had this section here. I mentioned min/max/clamp because developers potentially will need to use additional CSS to ensure their custom components support Dynamic Font Scaling. I wanted to call it out because developers may think the min/max/clamp behavior is an Ionic bug. This behavior really isn't documented anywhere on the web that I could find.


The Android Web View's font scaling mechanism is always enabled in web content and will automatically scale font sizes defined using the `px` unit. This means that any maximum or minimum font sizes specified using `px` will still be scaled even if the final font size does not align with the maximum or minimum font sizes specified.

In the following example we are using the [min()](https://developer.mozilla.org/en-US/docs/Web/CSS/min) function to indicate that the font size of `.foo` should be no larger than `14px`.

```css
.foo {
font-size: min(1rem, 14px);
}
```

If the root element's default font size is `16px`, and the system-level font scale is 1.5 (i.e text sizes should be increased by 50%), then `1rem` will evaluate to `24px` because `16 * 1.5 = 24`.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

This is larger than our defined maximum of `14px`, so one might assume that the evaluated font size of `.foo` is `14px`. However, since the Android Web View scales any font sizes defined using the `px` unit, this means the `14px` used in our `min()` function will also be scaled by 1.5.

As a result, this means that the maximum computed font size is actually `21px` since `14 * 1.5 = 21` and therefore the overall computed font size of `.foo` is `21px`.

### Using Modes on Different Platforms

Each platform has slightly different font scaling behaviors, and the `'ios'` and `'md'` modes have been implemented to take advantage of the scaling behaviors on their respective platforms.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

For example, `'ios'` mode makes use of maximum and minimum font sizes to follow [Apple's Human Interface Guidelines for Typography](https://developer.apple.com/design/human-interface-guidelines/typography). `'md'` mode does not implement this same behavior because Material Design does not have that same guidance. This means that using `'md'` mode on an iOS device may allow for very large font sizes in headers and footers.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

As a result, we strongly recommend using `'ios'` mode on iOS devices and `'md'` mode on Android devices when using Dynamic Font Scaling.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

## Changing the Font Size on a Device

Font scaling preferences are configured on a per-device basis by the user. This allows the user to scale the font for all applications that support this behavior. This guide shows how to enable font scaling for each platform.

### iOS

Font scaling on iOS can be configured in the Settings app.

See [Apple Support](https://support.apple.com/en-us/102453) for more information.

### Android

Where users access the font scaling configuration varies across devices, but it is typically found in the "Accessibility" page in the Settings app.

## Troubleshooting

### Dynamic Font Scaling is not working

There are a number of reasons why Dynamic Font Scaling may not have any effect on an app. The following list, while not exhaustive, provides some things to check to debug why Dynamic Font Scaling is not working.

1. Verify that your version of Ionic supports Dynamic Font Scaling. Dynamic Font Scaling was added starting in Ionic v7.5.
2. Dynamic Font Scaling is opt-in on iOS in Ionic 7. Verify that the proper CSS has been set. See [Enabling Dynamic Font Scaling in Ionic](#enabling-dynamic-font-scaling-in-ionic) for more information.
3. Verify that your code does not override the root element's default font size. Manually setting a font size on the root element will prevent Dynamic Font Scaling from working as intended.
4. Verify that your code does not override font sizes on Ionic components. Ionic components that set `font-size` rules will use `rem` units. However, if your app overrides that to use `px`, then that custom rule will need to be converted to use `rem`. See [Integrating Custom Components](#integrating-custom-components) for more information.
5. Verify that Ionic is not being loaded inside of an `iframe`. Some variants of Android do not apply font scaling across `iframe` boundaries.

### Maximum and minimum font sizes are not being respected on Android

The Android Web View scales any font sizes defined using the `px` unit by the system-level font scale preference. This means that actual font sizes may be larger or smaller than the font sizes defined in [min()](https://developer.mozilla.org/en-US/docs/Web/CSS/min), [max()](https://developer.mozilla.org/en-US/docs/Web/CSS/max), or [clamp()](https://developer.mozilla.org/en-US/docs/Web/CSS/clamp).

See [how font scaling works on Android](#android) for more information.

### Font sizes are larger/smaller even with Dynamic Font Scaling disabled

Ionic components define font sizes using [rem units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units#lengths) even when Dynamic Font Scaling is disabled. This sizes the text in each component relative to the font size of the root element, which is usually the `html` element. As a result, if the font size of `html` changes, the computed font size of all Ionic components will change too.

### Scaled Ionic iOS component font sizes do not exactly match native iOS equivalents

Certain native iOS components such as the Action Sheet make use of private font scales that Ionic does not have access to. While we try to stay as close as possible to the native behavior, text in some components may render slightly larger or smaller than their native counterparts.

### The text size in my Ionic app on iOS changed when enabling Dynamic Font Scaling

The root element's default font size is typically 16px. However, Dynamic Font Scaling on iOS devices make use of the ["Body" text style](https://developer.apple.com/design/human-interface-guidelines/typography#Specifications) which has a default font size of 17px. Since the text in Ionic components is scaled relative to the root element's font size, some text may get larger or smaller when Dynamic Font Scaling is enabled, even if the system-level text scale did not change.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved

:::info
iOS provides a "Callout" text style which has a default font size of 16px. However, this font style is currently not exposed to web content. See [the supported text styles in WebKit](https://webkit.org/blog/3709/using-the-system-font-in-web-content/) for more information.
liamdebeasi marked this conversation as resolved.
Show resolved Hide resolved
:::
2 changes: 1 addition & 1 deletion docs/layout/global-stylesheets.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Applies styles to `<html>` and defaults `box-sizing` to `border-box`. It ensures

#### typography.css

Typography changes the font-family of the entire document and modifies the font styles for heading elements. It also applies positioning styles to some native text elements.
Typography changes the font-family of the entire document and modifies the font styles for heading elements. It also applies positioning styles to some native text elements. This file is necessary for [Dynamic Font Scaling](./dynamic-font-scaling) to work.

#### normalize.css

Expand Down
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = {
},
'layout/global-stylesheets',
'layout/css-utilities',
'layout/dynamic-font-scaling',
],
},
{
Expand Down
71 changes: 71 additions & 0 deletions static/usage/v7/layout/dynamic-font-scaling/demo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Label</title>
<link rel="stylesheet" href="../../../common.css" />
<script src="../../../common.js"></script>
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@ionic/[email protected]/dist/ionic/ionic.esm.js"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@ionic/[email protected]/css/ionic.bundle.css"
/>
<style>
html {
--ion-dynamic-font: var(--ion-default-dynamic-font);
}
</style>
</head>

<body>
<ion-app>
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button default-href="/"></ion-back-button>
</ion-buttons>
<ion-title>Title</ion-title>
<ion-buttons slot="end">
<ion-button>
<ion-icon name="create" slot="icon-only"></ion-icon>
</ion-button>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-content color="light">
<ion-list inset="true">
<ion-item>
<ion-input label="Name"></ion-input>
</ion-item>
<ion-item>
<ion-checkbox>Check for a free puppy</ion-checkbox>
</ion-item>
<ion-item>
<ion-toggle>Enable Notifications</ion-toggle>
</ion-item>
</ion-list>

<ion-list inset="true">
<ion-item>
<ion-label>Item 1</ion-label>
</ion-item>
<ion-item>
<ion-label>Item 2</ion-label>
</ion-item>
<ion-item>
<ion-label>Item 3</ion-label>
</ion-item>
</ion-list>
</ion-content>
<ion-footer>
<ion-toolbar>
<ion-title>Footer</ion-title>
</ion-toolbar>
</ion-footer>
</ion-app>
</body>
</html>
Loading