Implement new ways to connect splash and megaphone.

This commit is contained in:
Alex Hart
2024-01-16 15:04:44 -04:00
committed by Greyson Parrelli
parent 7b9554a42c
commit 2c554a3a20
12 changed files with 562 additions and 31 deletions

View File

@@ -0,0 +1,23 @@
/*
* Copyright 2024 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.signal.core.ui
import androidx.compose.material3.Surface
import androidx.compose.runtime.Composable
import org.signal.core.ui.theme.SignalTheme
object Previews {
@Composable
fun Preview(
content: @Composable () -> Unit
) {
SignalTheme {
Surface {
content()
}
}
}
}