Skip to content

Commit

Permalink
add notice about NGC public group joins being slow
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Dec 30, 2023
1 parent 5447c3f commit 7491038
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/kotlin/org/briarproject/briar/desktop/ui/AddGroup.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.input.KeyboardCapitalization
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
Expand Down Expand Up @@ -150,6 +151,17 @@ fun AddGroup() = Box {
Text("join the Public Information Group")
}
}
Spacer(modifier = Modifier.height(30.dp))
Row {
Spacer(modifier = Modifier.width(35.dp))
Text(fontWeight = FontWeight.ExtraBold,
fontSize = 16.sp,
text ="Important Notice: ")
Text(fontWeight = FontWeight.Normal,
fontSize = 16.sp,
text ="Joining a Tox Public group for the first time can take a long time, even up to 30 minutes")
}
Spacer(modifier = Modifier.height(30.dp))
}
}

0 comments on commit 7491038

Please sign in to comment.