Skip to content

Commit

Permalink
fix: default dm values on android
Browse files Browse the repository at this point in the history
  • Loading branch information
indrajit-roy committed Jun 20, 2022
1 parent 35a390b commit 6d4c87b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class ScgatewayFlutterPlugin: FlutterPlugin, MethodCallHandler, ActivityAware {
val backIconColor = call.argument<String>("backIconColor")
val backIconOpacity = call.argument<Double>("backIconOpacity")

val smallplugPartnerProps = SmallplugPartnerProps(headerColor ?: "", headerOpacity ?: 1.0, backIconColor ?: "", backIconOpacity ?: 1.0)
val smallplugPartnerProps = SmallplugPartnerProps(headerColor ?: "#2F363F", headerOpacity ?: 1.0, backIconColor ?: "#ffffff", backIconOpacity ?: 1.0)

val res = JSONObject()

Expand Down

0 comments on commit 6d4c87b

Please sign in to comment.