|
|
|
@ -16,7 +16,6 @@ import androidx.compose.foundation.layout.heightIn
|
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
|
import androidx.compose.material.ButtonColors
|
|
|
|
|
import androidx.compose.material.ButtonDefaults
|
|
|
|
|
import androidx.compose.material.MaterialTheme
|
|
|
|
|
import androidx.compose.material.Text
|
|
|
|
|
import androidx.compose.material.TextButton
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
@ -43,6 +42,7 @@ import org.thoughtcrime.securesms.ui.LaunchedEffectAsync
|
|
|
|
|
import org.thoughtcrime.securesms.ui.PreviewTheme
|
|
|
|
|
import org.thoughtcrime.securesms.ui.SessionColorsParameterProvider
|
|
|
|
|
import org.thoughtcrime.securesms.ui.baseBold
|
|
|
|
|
import org.thoughtcrime.securesms.ui.buttonShape
|
|
|
|
|
import org.thoughtcrime.securesms.ui.color.Colors
|
|
|
|
|
import org.thoughtcrime.securesms.ui.color.LocalColors
|
|
|
|
|
import org.thoughtcrime.securesms.ui.contentDescription
|
|
|
|
@ -61,7 +61,7 @@ fun Button(
|
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
|
enabled: Boolean = true,
|
|
|
|
|
style: ButtonStyle = ButtonStyle.Large,
|
|
|
|
|
shape: Shape = MaterialTheme.shapes.large,
|
|
|
|
|
shape: Shape = buttonShape,
|
|
|
|
|
border: BorderStroke? = type.border(color, enabled),
|
|
|
|
|
colors: ButtonColors = type.buttonColors(color),
|
|
|
|
|
interactionSource: MutableInteractionSource = remember { MutableInteractionSource() },
|
|
|
|
@ -98,7 +98,7 @@ fun Button(
|
|
|
|
|
modifier: Modifier = Modifier,
|
|
|
|
|
enabled: Boolean = true,
|
|
|
|
|
size: ButtonStyle = ButtonStyle.Large,
|
|
|
|
|
shape: Shape = MaterialTheme.shapes.large,
|
|
|
|
|
shape: Shape = buttonShape,
|
|
|
|
|
border: BorderStroke? = type.border(color, enabled),
|
|
|
|
|
colors: ButtonColors = type.buttonColors(color),
|
|
|
|
|
interactionSource: MutableInteractionSource = remember { MutableInteractionSource() },
|
|
|
|
|