Skip to content

Commit

Permalink
Use light colors regardless of device theme
Browse files Browse the repository at this point in the history
  • Loading branch information
david-tixr committed Feb 29, 2024
1 parent 254ead3 commit 30b1faa
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ data class CompleteFlowViewState(
),
// Set `allowsDelayedPaymentMethods` to true if your business can handle payment
// methods that complete payment after a delay, like SEPA Debit and Sofort.
allowsDelayedPaymentMethods = true
allowsDelayedPaymentMethods = true,
appearance = PaymentSheet.Appearance(
colorsDark = PaymentSheet.Colors.defaultLight,
colorsLight = PaymentSheet.Colors.defaultLight,
)
)
}
}

0 comments on commit 30b1faa

Please sign in to comment.