protected void RemoveFlowTag(string tag)
        {
            var flowView = _tagsFlow.FindViewWithTag(tag);

            if (flowView != null)
            {
                _tagsFlow.RemoveView(flowView);
            }
        }