Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update compose pay button to version 0.1.4 #8006

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ext.versions = [
okio : '3.7.0',
paparazzi : '1.2.0',
poko : '0.15.2',
payButtonCompose : '0.1.3',
payButtonCompose : '0.1.4',
places : '3.3.0',
playServicesCoroutines : '1.7.3',
playServicesTfLite : '16.0.1',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.stripe.android.paymentsheet.paymentdatacollection.bacs

import android.content.res.Configuration.UI_MODE_NIGHT_YES
import androidx.annotation.VisibleForTesting
import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.background
import androidx.compose.foundation.border
Expand Down Expand Up @@ -28,7 +29,6 @@ import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.lifecycle.viewmodel.compose.viewModel
import com.google.android.gms.common.util.VisibleForTesting
import com.stripe.android.core.strings.resolvableString
import com.stripe.android.paymentsheet.R
import com.stripe.android.paymentsheet.utils.PaymentSheetContentPadding
Expand Down Expand Up @@ -201,6 +201,7 @@ internal fun BacsMandateItem(
color = MaterialTheme.colors.primary
)
)

false -> Text(
modifier = modifier,
text = text,
Expand Down
Loading