Skip to content

Instantly share code, notes, and snippets.

@lubiepomaranczki
Last active June 16, 2019 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubiepomaranczki/c1da55570836f58f57a3268514edab8e to your computer and use it in GitHub Desktop.
Save lubiepomaranczki/c1da55570836f58f57a3268514edab8e to your computer and use it in GitHub Desktop.
ExtendedContentView with navigation and option to add ToolbarItems
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using XamForms.Enhanced.Extensions;
namespace XamForms.Enhanced.Views
{
public class ExtendedContentView : ContentView
{
private bool _didAppear;
private bool _wasToolbarAvailable;
private List<ToolbarItem> _originalToolbar;
private Page _currentPage;
protected override void OnPropertyChanged(string propertyName = null)
{
base.OnPropertyChanged(propertyName);
Console.WriteLine(propertyName);
var navigationPage = Application.Current.MainPage as NavigationPage;
if (propertyName=="Renderer" && IsVisible && !_didAppear)
{
_didAppear = true;
OnViewAppeared();
}
else if (propertyName=="Renderer" && _didAppear && navigationPage != null )
{
OnViewDisappeared();
_didAppear = false;
_wasToolbarAvailable = false;
}
if (navigationPage != null && IsVisible && navigationPage.CurrentPage != null && !_wasToolbarAvailable && _didAppear)
{
_wasToolbarAvailable = true;
_currentPage = navigationPage.CurrentPage;
OnToolbarAvailable(navigationPage.CurrentPage.ToolbarItems);
}
}
/// <summary>
/// Method being called after ContentView appeared.
/// </summary>
protected virtual void OnViewAppeared()
{
}
/// <summary>
/// Method being called after ContentView disappeared.
/// </summary>
protected virtual void OnViewDisappeared()
{
var copyOfToolbar = _currentPage.ToolbarItems.CopyToList();
foreach (var toolbarItem in copyOfToolbar)
{
_currentPage.ToolbarItems.Remove(toolbarItem);
}
_currentPage.ToolbarItems.AddRange(_originalToolbar);
}
/// <summary>
/// Method being called when Toolbar is available. You can add ToolbarItems in here.
/// </summary>
protected virtual void OnToolbarAvailable(IList<ToolbarItem> toolbar)
{
_originalToolbar = new List<ToolbarItem>(toolbar);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment