Intégration d'un service de navigation personnalisé dans un projet MAUI Blazor avec support pour le bouton retour Android
Ajout du code nécessaire
Ajoutez une interface INavigationService
public interface INavigationService
{
event Action Action;
NavigationManager Navigation { get; protected set; }
List<string> HistoryUrls { get; protected set; }
void Initialize(NavigationManager navigation);
void NavigateTo(string url);
void Naviga ...
Publié le 4 août à 07h01