|
@@ -111,13 +111,7 @@ fun CountryItem(server: Server, category: String) {
|
|
|
indication = null,
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
) {
|
|
|
- Toast
|
|
|
- .makeText(
|
|
|
- context,
|
|
|
- server.country + " " + server.ping,
|
|
|
- Toast.LENGTH_SHORT
|
|
|
- )
|
|
|
- .show()
|
|
|
+
|
|
|
}
|
|
|
) {
|
|
|
val icon = Utils.getDrawable(context, server.iso)
|
|
@@ -209,13 +203,7 @@ fun CountryItem(server: Server, category: String) {
|
|
|
indication = null,
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
) {
|
|
|
- Toast
|
|
|
- .makeText(
|
|
|
- context,
|
|
|
- server.country + " " + server.ping,
|
|
|
- Toast.LENGTH_SHORT
|
|
|
- )
|
|
|
- .show()
|
|
|
+
|
|
|
}
|
|
|
) {
|
|
|
val icon = Utils.getDrawable(context, server.iso)
|
|
@@ -341,13 +329,7 @@ fun ColumnScope.ExpandableRow(server: Server) {
|
|
|
indication = null,
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
) {
|
|
|
- Toast
|
|
|
- .makeText(
|
|
|
- context,
|
|
|
- serverInfo.server_name + " " + serverInfo.ping,
|
|
|
- Toast.LENGTH_SHORT
|
|
|
- )
|
|
|
- .show()
|
|
|
+
|
|
|
}
|
|
|
) {
|
|
|
Text(text = serverInfo.server_name!!,
|