Add initial registration v5 prototype.

This commit is contained in:
Greyson Parrelli
2025-11-25 16:55:29 -05:00
committed by jeffrey-signal
parent 1a5163fc47
commit 5ea5279fbb
105 changed files with 8146 additions and 44 deletions

View File

@@ -328,7 +328,7 @@ private fun CreateCallLinkBottomSheetContent(
@DayNightPreviews
@Composable
private fun CreateCallLinkBottomSheetContentPreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
CreateCallLinkBottomSheetContent(
callLink = CallLinkTable.CallLink(
recipientId = RecipientId.UNKNOWN,

View File

@@ -489,7 +489,7 @@ private fun CallQualityScreenPreview() {
@PreviewLightDark
@Composable
private fun HowWasYourCallPreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
Column {
HowWasYourCall(
onGreatClick = {},
@@ -503,7 +503,7 @@ private fun HowWasYourCallPreview() {
@PreviewLightDark
@Composable
private fun WhatIssuesDidYouHavePreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
var userSelection by remember { mutableStateOf<Set<CallQualityIssue>>(emptySet()) }
Column {
@@ -524,7 +524,7 @@ private fun WhatIssuesDidYouHavePreview() {
@PreviewLightDark
@Composable
private fun HelpUsImprovePreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
Column {
HelpUsImprove(
isShareDebugLogSelected = true,