Skip to content

Instantly share code, notes, and snippets.

View hot33331's full-sized avatar

Tobias Hoppenthaler hot33331

View GitHub Profile
@LanceMcCarthy
LanceMcCarthy / README.md
Last active December 20, 2023 13:28
VS Live Episode: Resources for Publishing .NET MAUI Projects

.NET MAUI Publishing Resources

So you're done building your .NET MAUI application, congrats! Now it's time to publish them, This can be a tricky topic to navigate, even to dedicated DevOps engineers who do this regularly because of the number of moving pieces in the puzzle.

To help you, I have combined several resources that are a great place to get started. These are not only a good Getting Started experience, but it's also a good thing to bookmark as a quick look-up reference.

Table of Contents

@Sweekriti91
Sweekriti91 / mauixamarinlibs.md
Last active January 19, 2024 19:49
Xamarin Libraries with .NET MAUI Support/Versions
@matthewrdev
matthewrdev / InterceptBackButtonNavigationPageRenderer.iOS.cs
Created November 18, 2021 01:25
Intercepts the "soft" back button events from the iOS TopViewController and forwards them to the Page.OnBackButtonPressed for handling.
using System;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using UIKit;
using Xamarin.Forms;
using Xamarin.Forms.Platform.iOS;
[assembly: ExportRenderer(typeof(NavigationPage), typeof(MyApp.iOS.Renderers.InterceptBackButtonNavigationPageRenderer))]
@matthewrdev
matthewrdev / InterceptBackButtonNavigationPageRenderer.Android.cs
Last active February 1, 2023 17:08
Intercepts the "soft" back button events from the Android toolbar and forwards them to the Page.OnBackButtonPressed for handling.
using System.Reflection;
using System.Threading.Tasks;
using Android.Content;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android.AppCompat;
using AToolbar = AndroidX.AppCompat.Widget.Toolbar;
[assembly: ExportRenderer(typeof(NavigationPage), typeof(MyApp.Droid.Renderers.InterceptBackButtonNavigationPageRenderer))]
namespace MyApp.Droid.Renderers
{