This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This Compose skill is specifically to help with some issues we noticed around Talkback, progress semantics, and slider animations. | |
| This is a workaround for a specific bug: https://issuetracker.google.com/issues/480332636 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This is a Compose skill we created and started using in February 2026. It specifically covers state patterns in Compose. This may no longer be needed once a similar skill is officially available from Google. | |
| For the Google skills, see: | |
| https://github.com/android/skills/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.bubble.ui.components | |
| import androidx.compose.animation.core.MutableTransitionState | |
| import androidx.compose.material3.MaterialTheme | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.getValue | |
| import androidx.compose.runtime.mutableStateOf | |
| import androidx.compose.runtime.remember | |
| import androidx.compose.runtime.setValue | |
| import androidx.compose.ui.graphics.Color |