If the child page is hosted under a NavigationPage the BackButton can be disabled using the AttachedProperty HasBackButtonDisable dependency property.
In MauiReactor use this code:
For the BackButton pressed event you have instead to hack it a bit as there isn't a BackButtonPressed event out of the box and the OnBackButtonPressed can't work.
To handle such an event we have to create a Page-derived custom class and override the OnBackButtonPressed method:
Put the above code in a separate file/namespace different from the namespace containing the component that will scaffold it.