Skip to content

Instantly share code, notes, and snippets.

@felipebaltazar
Created March 2, 2021 01:43
Show Gist options
  • Save felipebaltazar/a4790ea94b0479cb6953d8e1447ca828 to your computer and use it in GitHub Desktop.
Save felipebaltazar/a4790ea94b0479cb6953d8e1447ca828 to your computer and use it in GitHub Desktop.
namespace Notifications
{
public partial class MyStartup : ShinyStartup
{
...
public override void ConfigureServices(IServiceCollection services, IPlatform platform)
{
// Adicionamos o uso das notificacoes
services.UseNotifications();
services.UseFirebaseMessaging<PushDelegate>();
}
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment