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

@@ -325,7 +325,7 @@ private fun NoBackupKeyBottomSheet(
@DayNightPreviews
@Composable
private fun NoBackupKeyBottomSheetPreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
NoBackupKeyBottomSheet(
showSecondParagraph = true
)
@@ -335,7 +335,7 @@ private fun NoBackupKeyBottomSheetPreview() {
@DayNightPreviews
@Composable
private fun NoBackupKeyBottomSheetNoSecondParagraphPreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
NoBackupKeyBottomSheet(
showSecondParagraph = false
)

View File

@@ -104,7 +104,7 @@ private fun Sheet(
@Composable
@DayNightPreviews
private fun SheetPreview() {
Previews.BottomSheetPreview {
Previews.BottomSheetContentPreview {
Sheet()
}
}