![](https://developer.android.com/static/wear/images/design/apps-layout-overview-hero.png)

Understand the Compose layout templates and sample design layouts in order to
design and build unique app screens.

Most apps use either a non-scrolling or scrolling layout, consisting of the
following elements:

- **Time text:** Given that the device is a watch, we recommend showing the time text even when in an app journey (optional, but recommended).
- **Page title:** Wayfinding and reminders of where in the journey the user is (optional, but recommended).
- **Scroll indicator:** Only on scrolling-layouts; indicates that there's more below the screen fold.
- **Action buttons**: Recommended at the bottom; confirm, conclude, or continue the user-journey.

## App layout sections

**Note:** These sections don't apply to preset component layouts---such as dialogs, confirmation overlays, pickers, and switchers---which have specific layouts, margins, and custom components.  
![](https://developer.android.com/static/wear/images/design/apps-layout-overview-top.png) **Top section**

<br />

The top section has the option of Time Text, a compact button, and title serving
as a way finder and clear navigation. All are optional.

A compact button can be used in special cases where the page is very long, and a
search or action button will help the user navigate the list without having to
scroll all the way to the bottom.

![](https://developer.android.com/static/wear/images/design/apps-layout-overview-middle.png) **Middle section**

<br />

The middle section can contain any of the available Compose (non-fullscreen),
or custom components in a list. This section can contain additional headings to
group content, and the scrollbar.

All components within the middle content section should be responsive, filling
the available width up until the percentage margins. All scrolling layouts will
have scaling-lazy-column behavior, showing the components scaling and fading off
screen.

![](https://developer.android.com/static/wear/images/design/apps-layout-overview-bottom.png) **Bottom section**

<br />

The bottom section provides space for primary and secondary action buttons, or
can be left empty if this is the end of a journey.

It is recommended to use an end-of-list Edge-Hugging Button as it utilizes the
limited space and complements the round screen.

More than one action can be needed, which can appear in a button stack, or
two-icon button group.

<br />

| **Note:** The system places the time text and scrollbar components. They should be in your layouts to indicate that they're turned on in the build. The time text can include other relative information in your app.

## Non-scrolling app views

![](https://developer.android.com/static/wear/images/design/apps-layout-non-scrolling-with-title.png) **With title**  
![](https://developer.android.com/static/wear/images/design/apps-layout-non-scrolling-without-title.png) **Without title**

<br />

![](https://developer.android.com/static/wear/images/design/apps-layout-non-scrolling-with-title-no-bottom.png) **With title and no bottom section**  
![](https://developer.android.com/static/wear/images/design/apps-layout-non-scrolling-without-title-no-bottom.png) **Without title or bottom section**

<br />

## Scrolling app views

![](https://developer.android.com/static/wear/images/design/apps-layout-scrolling-with-title.png) **With title**  
![](https://developer.android.com/static/wear/images/design/apps-layout-scrolling-without-title.png) **Without title**

<br />

![](https://developer.android.com/static/wear/images/design/apps-layout-scrolling-with-title-no-bottom.png) **With title and no bottom section**  
![](https://developer.android.com/static/wear/images/design/apps-layout-scrolling-without-title-no-bottom.png) **Without title or bottom section**

<br />