---
title: "The fold is two devices, not one screen"
date: 2026-08-07
url: https://remiam.co.uk/notes/the-fold-is-two-devices
tags: [Hardware, Displays, Interface]
read_time_minutes: 5
description: "Huawei launched the MateBook Fold Ultimate Design 2026 on 5 August 2026: an 18-inch foldable OLED at 1.16 kg. What a folding large display actually changes for the systems we build."
---

# The fold is two devices, not one screen

*Published 2026-08-07 · 5 min read · by Liam (Remiam)*

Huawei put an 18-inch foldable PC on sale on 5 August. The interesting part is not the panel, it is that the thing has two honest states and most software still pretends it has one.

On 5 August Huawei launched the second generation MateBook Fold Ultimate Design. An 18-inch foldable OLED at 3,296 by 2,472, 1,600 nits peak, a Kirin X90 Plus at 28 watts, 1.16 kg, a 74.69 Wh battery with 140 watt charging, HarmonyOS 6.1. Prices start at CNY 24,999, roughly 3,700 dollars, and it is a China-only release for now (Notebookcheck, 2026; GSMArena, 2026).

Most of the coverage went to the hinge and the price. Fair enough. The part that matters to anyone shipping software is duller and more useful: a large panel that folds is not one screen with a flexible width. It is two devices that happen to share a battery.

## Two states, not a continuum

Responsive design taught a generation of teams to treat screen size as a single axis. Narrow to wide, one layout stretching along it. That model works because a browser window really does resize smoothly, and because the user is in the same posture at every point on the line.

A fold breaks both assumptions at once. Folded, this is a 13-inch laptop with a keyboard half and a screen half, used at a desk or on a train table, two hands, leaning in. Open, it is an 18-inch portrait-capable slab you prop up, touch, and read from further back. Same machine, different distance, different input, different task. There is no meaningful state in between, and nothing useful happens at the midpoint.

> If your layout at 1,200 points is a linear interpolation between the folded and unfolded designs, you have not designed either of them.

## What we have learned from installation hardware

We build a lot of screens that live in the physical world: front-of-house check-in, retail activations, survey kit that goes out in a van. The lesson that keeps repeating is that posture drives the design more than pixel count does.

- A screen at arm's length gets read. A screen at three metres gets glanced at. The type scale that works for one is unusable for the other.
- Touch and keyboard are not interchangeable inputs. Touch wants fewer, larger targets and forgiving hit areas; a keyboard wants density and shortcuts.
- Anything that changes shape in the user's hands needs to preserve where they were. Losing scroll position or a half-typed field on a fold is the fastest way to make good hardware feel broken.
- Hinges are a maintenance line item. On kit we deploy, moving parts fail first and they fail on the day of the event.

## How we would build for it

Treat the fold as application state, not a media query. The device knows whether it is open, and that fact should reach the app as an explicit posture value that your layout switches on, the same way you would switch on a user role. Two designed layouts, each complete, each tested on its own.

Then write down the transition contract before anyone builds it. What survives a fold: scroll position, selection, form state, playback, focus. What is allowed to change: navigation shape, panel count, type scale, which controls are visible. If that list is not written, the behaviour ends up being whatever the framework does by default, which is usually a remount and a lost draft.

And test at the crease. The fold line is exactly where a designer will centre a modal and exactly where a user will not be able to read it.

## Should a client care yet

Not at this price, and not on a single-market release. Nobody should be building a foldable-first product for a 3,700 dollar machine sold in one country. What has changed is the direction of travel. Large folding panels have moved from concept stands to a product you can buy, at consumer weight, with a real battery in it. Omdia has 2026 as the pivotal year for foldables generally, with shipments forecast to grow around 50 per cent year on year as Apple enters the category (Omdia, 2025). That is usually the point where a shape stops being a novelty and starts being a size class you have to support.

The cheap insurance is architectural, and you should be doing it anyway. Stop treating viewport width as the only signal your layout reads. Keep state in a place that survives a re-layout. Design the two postures your product actually gets used in rather than the average of them. Do that, and a folding device is a Tuesday afternoon of work rather than a rewrite.

## References

1. [Huawei launches MateBook Fold (2026) with 18-inch foldable OLED display and Kirin X90 Plus chip, Notebookcheck, 2026](https://www.notebookcheck.net/Huawei-launches-MateBook-Fold-2026-with-18-inch-foldable-OLED-display-and-Kirin-X90-Plus-chip.1360518.0.html)
2. [Huawei unveils 2026 MateBook Fold with Kirin X90 Plus SoC, GSMArena, 2026](https://www.gsmarena.com/huawei_unveils_2026_matebook_fold_with_kirin_x90_plus_soc-news-74035.php)
3. [Foldable smartphones are moving into a pivotal 2026, Omdia, 2025](https://omdia.tech.informa.com/blogs/2025/sep/foldable-smartphones-are-moving-into-a-pivotal-2026)
