Skip to content

Commit

Permalink
catalog: fix stargate name
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Sep 15, 2021
1 parent 83f26e5 commit 9f47322
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fun CheckboxScreenInner() {
onCheckedChange = { checkbox3 = !checkbox3 },
modifier = Modifier.fillMaxWidth(),
) {
Text("Star Gate")
Text("Stargate")
}

Spacer(Modifier.size(32.dp))
Expand Down Expand Up @@ -113,7 +113,7 @@ fun CheckboxScreenInner() {
modifier = Modifier.fillMaxWidth(),
description = { Text("Indeed.") },
) {
Text("Star Gate")
Text("Stargate")
}

Spacer(Modifier.size(32.dp))
Expand Down Expand Up @@ -143,7 +143,7 @@ fun CheckboxScreenInner() {
enabled = false,
description = { Text("Indeed.") },
) {
Text("Star Gate")
Text("Stargate")
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fun RadioScreenInner() {
onClick = { selected = 2 },
modifier = Modifier.fillMaxWidth(),
) {
Text("Star Gate")
Text("Stargate")
}

Spacer(Modifier.size(32.dp))
Expand Down Expand Up @@ -117,7 +117,7 @@ fun RadioScreenInner() {
modifier = Modifier.fillMaxWidth(),
description = { Text("Indeed.") },
) {
Text("Star Gate")
Text("Stargate")
}

Spacer(Modifier.size(32.dp))
Expand Down Expand Up @@ -149,7 +149,7 @@ fun RadioScreenInner() {
enabled = false,
description = { Text("Indeed.") },
) {
Text("Star Gate")
Text("Stargate")
}
}
}

0 comments on commit 9f47322

Please sign in to comment.