Skip to content

Instantly share code, notes, and snippets.

@sthewissen
Created January 17, 2022 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sthewissen/e18526c22c3d8f43efc2ec097405b3e6 to your computer and use it in GitHub Desktop.
Save sthewissen/e18526c22c3d8f43efc2ec097405b3e6 to your computer and use it in GitHub Desktop.
Grab a native view from MAUI
#if __ANDROID__
ViewHandler.ViewMapper[nameof(IView.BackgroundColor)] = (handler, view) =>
(handler.NativeView as AView).SetBackgroundColor(Android.Graphics.Color.Green);
var textView = crossPlatformLabel.Handler.NativeView as TextView;
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment