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 956be8f commit 985231eCopy full SHA for 985231e
app/src/main/java/com/sunkensplashstudios/VRCRoboScout/TrueSkillView.kt
@@ -126,7 +126,7 @@ fun TrueSkillView(navController: NavController) {
126
// link to trueskill page
127
IconButton(
128
onClick = {
129
- // TODO: placeholder for URL
+ uriHandler.openUri("https://vrc-data-analysis.com/");
130
},
131
modifier = Modifier.padding(horizontal = 5.dp)
132
) {
@@ -199,7 +199,7 @@ fun TrueSkillView(navController: NavController) {
199
DropdownMenuItem(
200
text = { Text("Region") },
201
children = {
202
- API.regionsMap.toSortedMap().forEach { (name, id) ->
+ API.regionsMap.toSortedMap().forEach { (name) ->
203
HorizontalDivider(
204
color = Color.Gray.copy(alpha = 0.1f),
205
thickness = 0.5.dp,
0 commit comments