'How to use bottom tabitems combined with a flyoutpage in Xamarin Forms?

I currently have a flyoutpage.

Code:

  <FlyoutPage.Flyout>
        <views:MenuPage />
    </FlyoutPage.Flyout>


    <FlyoutPage.Detail>
        <NavigationPage>
            <x:Arguments>
                <views:TrainingPage />
            </x:Arguments>
        </NavigationPage>
    </FlyoutPage.Detail>

However I also want to have tabitems at the bottom. Is this possible in Xamarin Forms?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source