We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efb082 commit 0cf6838Copy full SHA for 0cf6838
app/src/main/java/to/bitkit/ui/components/Keyboard.kt
@@ -11,6 +11,7 @@ import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
11
import androidx.compose.material3.Text
12
import androidx.compose.runtime.Composable
13
import androidx.compose.ui.Modifier
14
+import androidx.compose.ui.platform.testTag
15
import androidx.compose.ui.text.TextStyle
16
import androidx.compose.ui.text.font.FontWeight
17
import androidx.compose.ui.text.style.TextAlign
@@ -68,7 +69,7 @@ private fun KeyboardButton(
68
69
onClick(text)
70
},
71
onClickLabel = text
- ),
72
+ ).testTag("KeyboardButton_$text"),
73
)
74
}
75
0 commit comments