Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.facebook.react.bridge

import android.content.ContextWrapper
import androidx.appcompat.view.ContextThemeWrapper
import androidx.fragment.app.FragmentActivity
import com.facebook.react.modules.core.DeviceEventManagerModule
import com.facebook.react.uimanager.UIManagerModule
Expand All @@ -11,7 +11,7 @@ open class ReactContext(
val currentActivity: FragmentActivity,
private val channel: MethodChannel,
private val sdkAccessor: () -> StripeSdkModule
): ContextWrapper(currentActivity) {
): ContextThemeWrapper(currentActivity, androidx.appcompat.R.style.Theme_AppCompat_Light_NoActionBar) {

val reactApplicationContext: ReactApplicationContext by lazy {
sdkAccessor().reactApplicationContext
Expand Down
Loading