Skip to content

Commit

Permalink
Remove Android's white background color in UnityWidgetController.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
timbotimbo committed Feb 2, 2023
1 parent a3314ee commit 46a2350
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class FlutterUnityWidgetController(
if (context != null) tempContext = context
// set layout view
view = FrameLayout(tempContext)
view.setBackgroundColor(Color.WHITE)
view.setBackgroundColor(Color.TRANSPARENT)

// setup method channel
methodChannel = MethodChannel(binaryMessenger, "plugin.xraph.com/unity_view_$id")
Expand Down

1 comment on commit 46a2350

@timbotimbo
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request #719

Please sign in to comment.