wear-compose-m3
GitHub提供 Wear OS Compose Material3 开发指导,涵盖项目创建、版本迁移及核心组件使用。强调严格遵循稳定版依赖、Kotlin 2.0+ 配置及样本提取规范,避免随意降级或猜测错误。
Trigger Scenarios
Install
npx skills add android/skills --skill wear-compose-m3 -g -y
SKILL.md
Frontmatter
{
"name": "wear-compose-m3",
"license": "Complete terms in LICENSE.txt",
"metadata": {
"author": "Google LLC",
"keywords": [
"Wear OS",
"Compose",
"Material3",
"Horologist",
"TransformingLazyColumn",
"AppScaffold",
"ScreenScaffold"
],
"last-updated": "2026-08-06"
},
"description": "Expert guidance for working with Wear OS Compose Material3. Use this skill when creating, updating, or migrating Wear OS projects. This includes the androidx.wear.compose.material3, androidx.wear.compose.foundation, and androidx.wear.compose.navigation3 libraries. Also working with core components such as AppScaffold, ScreenScaffold, and TransformingLazyColumn, and core Wear OS concepts such as ambient mode. Migration from lower versions such as Material 2.5 and Horologist."
}
Prerequisites and compatibility
- Current Wear OS Compose version in-use: To find the installed library version, read
gradle/libs.versions.tomlorbuild.gradle.ktsdirectly. Don't run./gradlew dependenciesor other shell commands to resolve versions. - Wear OS Compose Material3 version: If an internal tool is available to establish the latest stable version
{VERSION}ofandroidx.wear.compose:compose-material3, use that tool.- Otherwise, fetch the official Maven metadata XML to identify
{VERSION}(highest number, ignoring-alpha,-beta, or-rc).
- Otherwise, fetch the official Maven metadata XML to identify
- Strict compliance: If a version is listed as stable, you MUST use it, unless overridden by the user. Do not downgrade based on initial "Unresolved reference" errors in the editor or outdated web search results.
- Kotlin version: For Wear Compose Material3, use Kotlin 2.0.0 or higher.
- Compose compiler:
- If Kotlin version is 2.0.0+ , the project must use the
org.jetbrains.kotlin.plugin.composeGradle plugin. - If Kotlin version is < 2.0.0 , the project must use
kotlinCompilerExtensionVersionincomposeOptions, matching the Compose to Kotlin Compatibility Map.
- If Kotlin version is 2.0.0+ , the project must use the
- Min SDK: Ensure
minSdkis at least 25. - Sample extraction mandate: Wear Compose libraries ship with an additional JAR file which contains individual samples for each and every component. You mustn't propose code changes, other than previews or basic changes such as color changes, until the samples in Capability 3 are extracted to the local cache. Library source files are incomplete and NOT a substitute for these samples; bypassing extraction is an environment setup failure.
Gotchas
- Mandatory sync and validation: After updating versions in
libs.versions.tomlorbuild.gradle.kts, you must perform a Gradle sync before refactoring any code. This ensures the environment has resolved the libraries correctly. - Prohibition of guessing (error protocol): If you encounter an 'Unresolved Reference' or API mismatch after a successful sync, do not attempt to 'fix' it by downgrading the library version.
Capabilities and tools
Capability 1: Migration
Use this guidance when migrating from an older version of Wear OS Compose or Horologist.
- Unless otherwise indicated by the developer, use the latest stable version of Wear Compose Material3 from
{VERSION}. - Read the migration guide.
- Use the official component mappings from the migration guide.
- Before refactoring any component (for example,
Chip->Button), check the parameter names, slot types, and "Expressive" design tokens. - Do not use the Horologist Composables, Compose Layout, or Compose Material libraries.
- Always check against the component guidance in Capability 4.
- Expect screenshot tests to fail when a migration has been performed: Even when migrating to very similar components, expected defaults for padding and positioning will have changed. Do not seek to artificially match the pre-migration screenshot, but give preference to the Material3 defaults.
Capability 2: Adding Wear OS Compose Material3 features or updating the app
Use this guidance when the developer asks to update a project which is using an earlier version of Wear OS Compose Material3, or when they ask to add further features.
- Unless otherwise indicated by the developer, use the latest stable version of Wear Compose Material3 from
{VERSION}. - Do not use the Horologist Composables, Compose Layout, or Compose Material libraries.
- Always check against the component guidance in Capability 4.
- Expect screenshot tests to fail when a migration has been performed: Even when migrating to very similar components, expected defaults for padding and positioning will have changed. Do not seek to artificially match the pre-migration screenshot, but give preference to the Material3 defaults.
Capability 3: Component samples
Use this table of reference to find canonical samples for Wear Compose components. When working with a Wear Compose component, you must use the samples linked from the table to ensure you know how to correctly use it.
Material 3 components in androidx.wear.compose.material3.*
Foundation components in androidx.wear.compose.foundation.*
Capability 4: Component guidance
Mandatory: Use this capability as a checklist against any component use. It provides more holistic guidance on how to use each component in practice, beyond the component syntax.
-
AppScaffoldandScreenScaffold- [ ] Use
AppScaffoldas the outer container, withScreenScaffoldchildren. - [ ] Use only ONE
AppScaffoldand any number ofScreenScaffold.
- [ ] Use
-
ScalingLazyColumn- UseTransformingLazyColumninstead. -
TransformingLazyColumn- You will need the following imports:
import androidx.wear.compose.foundation.lazy.TransformingLazyColumn import androidx.wear.compose.foundation.lazy.TransformingLazyColumnDefaults import androidx.wear.compose.foundation.lazy.rememberTransformingLazyColumnState // ... import androidx.wear.compose.material3.lazy.rememberTransformationSpec import androidx.wear.compose.material3.lazy.transformedHeight
Canonical example:
val columnState = rememberTransformingLazyColumnState() val transformationSpec = rememberTransformationSpec() ScreenScaffold( scrollState = columnState ) { contentPadding -> TransformingLazyColumn( state = columnState, contentPadding = contentPadding ) { item { ListHeader( modifier = Modifier .fillMaxWidth() .transformedHeight(this, transformationSpec) .minimumVerticalContentPadding(ListHeaderDefaults.minimumTopListContentPadding), transformation = SurfaceTransformation(transformationSpec) ) { Text(text = "Header") } } // ... other items item { Button( modifier = Modifier .fillMaxWidth() .transformedHeight(this, transformationSpec) .minimumVerticalContentPadding(ButtonDefaults.minimumVerticalListContentPadding), transformation = SurfaceTransformation(transformationSpec), onClick = { /* ... */ }, icon = { Icon( imageVector = Icons.Default.Build, contentDescription = "build", ) }, ) { Text( text = "Build", maxLines = 1, overflow = TextOverflow.Ellipsis, ) } } } }
- [ ] Use
TransformingLazyColumninstead ofScalingLazyColumn. - [ ] You must pass the
contentPaddingparameter fromScreenScaffoldto theTransformingLazyColumn. - [ ] Use the
minimumVerticalContentPaddingmodifier to achieve required padding top and bottom.- This expects a value from defaults, such as
ButtonDefaults,CardDefaults, `ListHeaderDefaults. - Note: This is a scoped modifier available within
TransformingLazyColumnItemScope.
- This expects a value from defaults, such as
- [ ] Ensure the list morphs and scales.
- [ ] Use
transformedHeightmodifier. - [ ] Use
transform = SurfaceTransform(...). - [ ] If configuring a list for snapping, use
flingBehaviorandrotaryScrollableBehaviortogether:
val columnState = rememberTransformingLazyColumnState() ScreenScaffold(scrollState = columnState) { contentPadding -> TransformingLazyColumn( state = columnState, flingBehavior = TransformingLazyColumnDefaults.snapFlingBehavior(columnState), rotaryScrollableBehavior = RotaryScrollableDefaults.snapBehavior(columnState) ) { // ... // ... } }
- [ ] Use
-
ScreenScaffold- [ ] Guard the
scrollIndicatorwith!LocalScrollCaptureInProgress.current.
- [ ] Guard the
-
EdgeButton- [ ] Do NOT use as the final item within a
TransformingLazyColumn. Instead, use the slot inScreenScaffold. - [ ] When used in a
TransformingLazyColumn, add the required overscroll behavior:
val columnState = rememberTransformingLazyColumnState() ScreenScaffold( scrollState = columnState, edgeButton = { EdgeButton( onClick = { /* TODO */ }, modifier = Modifier.scrollable( columnState, orientation = Orientation.Vertical, reverseDirection = true, // Apply overscroll to the EdgeButton for proper scrolling behavior. overscrollEffect = rememberOverscrollEffect(), ) ) { Text("More") } } ) { contentPadding -> TransformingLazyColumn( contentPadding = contentPadding, state = columnState, ) { // ... // ... } }
- [ ] Do NOT use as the final item within a
-
Column- [ ] USE as a direct child of
ScreenScaffoldif the screen is will never scroll, even with the largest system font. - [ ] Use
TransformingLazyColumninstead for all other cases.
- [ ] USE as a direct child of
-
Styles
- [ ] Do NOT hard-code text sizes, use
typographyfromMaterialTheme. - [ ] Do NOT hard-code colors, use
colorSchemefromMaterialTheme.
- [ ] Do NOT hard-code text sizes, use
-
Use component defaults:
- [ ] Components such as
Buttonhave a correspondingButtonDefaultsobject. - [ ] Check for and use the
*Defaultsobject for any component when working with padding and styling values, in preference to hard-coded values.
- [ ] Components such as
-
Use Wear specific previews:
- [ ]
WearPreviewDevices - [ ]
WearPreviewFontScales
- [ ]
-
Ambient mode
- [ ] Use
LocalAmbientModeManagerinstead ofAmbientLifecycleObserver.
- [ ] Use
-
Navigation
- [ ] When adding navigation fresh, use Navigation3.
- [ ] For Navigation3 in Wear OS, use
SwipeDismissableSceneStrategy()from the Wear Composecompose-navigation3library.
-
Comments
- [ ] Where any Kotlin file has been modified, ensure that the existing comments are up to date and accurately reflect any changes to the implementation.
-
HorizontalPagerorVerticalPager- [ ] Use the Composable hierarchy in this order:
AppScaffold,HorizontalPagerScaffold,HorizontalPager,AnimatedPage,ScreenScaffold. Or similarly forVerticalPager.
- [ ] Use the Composable hierarchy in this order:
Version History
- 6685cac Current 2026-08-19 22:26
- 47e1dff 2026-07-24 22:28


