<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o" -->

---
title: Beyond Font Scaling: Large Content Viewer with Compose
description: When bottom navigation bars with multiple items can&#x27;t scale text properly for accessibility, an iOS-inspired large content viewer offers an alternative. This...
canonical: https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Beyond Font Scaling: Large Content Viewer with Compose | daily.dev
og:description: When bottom navigation bars with multiple items can&#x27;t scale text properly for accessibility, an iOS-inspired large content viewer offers an alternative. This...
og:url: https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o
og:image: https://api.daily.dev/og/posts/Wxiiics8o.png
og:image:alt: Beyond Font Scaling: Large Content Viewer with Compose
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Beyond Font Scaling: Large Content Viewer with Compose

**[ProAndroidDev](https://daily.dev/sources/pand)** · 7 min read · 0 upvotes · 0 comments

## Summary

When bottom navigation bars with multiple items can't scale text properly for accessibility, an iOS-inspired large content viewer offers an alternative. This implementation uses Jetpack Compose's InteractionSource to detect long presses on navigation items, displaying a centered preview with scalable text when font sizes exceed 100%. The solution addresses WCAG 1.1.4 compliance by allowing text resize up to 200% without assistive technology, though it's limited to pointer-based interaction and may have discoverability challenges.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://proandroiddev.com/beyond-font-scaling-large-content-viewer-with-compose-a6d6f5c2a29c>

## Similar posts on daily.dev

- [Adding Navigation support to Large Content Viewer with Compose](https://daily.dev/posts/adding-navigation-support-to-large-content-viewer-with-compose-y7vbaim1s) · ProAndroidDev · 0 upvotes · 0 comments
- [Compose UI Tests for Larger Font Sizes: Scrolling and Text Truncation](https://daily.dev/posts/compose-ui-tests-for-larger-font-sizes-scrolling-and-text-truncation-rhg9qvwhi) · droidcon · 0 upvotes · 0 comments
- [Testing Font Scaling For Accessibility With Figma Variables — Smashing Magazine](https://daily.dev/posts/testing-font-scaling-for-accessibility-with-figma-variables-smashing-magazine-kh7bchzym) · Smashing Magazine · 0 upvotes · 0 comments

---

Tags: [#android](https://daily.dev/tags/android), [#kotlin](https://daily.dev/tags/kotlin), [#accessibility](https://daily.dev/tags/accessibility), [#jetpack-compose](https://daily.dev/tags/jetpack-compose), [#ui-ux](https://daily.dev/tags/ui-ux)

[View this post on daily.dev](https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Beyond Font Scaling: Large Content Viewer with Compose","url":"https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o"},"datePublished":"2026-01-19T12:42:58.624Z","dateModified":"2026-01-19T12:43:23.747Z","description":"When bottom navigation bars with multiple items can't scale text properly for accessibility, an iOS-inspired large content viewer offers an alternative. This...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/96fad723918d33168d6744949cc0354d?_a=AQAEulh","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/96fad723918d33168d6744949cc0354d?_a=AQAEulh","isAccessibleForFree":true,"articleSection":"ProAndroidDev","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"ProAndroidDev","logo":"https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/656c1eb1f1ef4f91936e86fc16545114","url":"https://daily.dev/sources/pand"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/beyond-font-scaling-large-content-viewer-with-compose-wxiiics8o","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"android,kotlin,accessibility,jetpack-compose,ui-ux","timeRequired":"PT7M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"ProAndroidDev","item":"https://daily.dev/sources/pand"},{"@type":"ListItem","position":3,"name":"Beyond Font Scaling: Large Content Viewer with Compose"}]}
```

