Exemplo n.º 1
0
 public static void Hide()
 {
     Transition_.AnimateOut(() => {
         Localization.OnCultureChanged -= RefreshBarContainer;
         ActionLabelBar_.RecycleAllChildren();
     });
 }
Exemplo n.º 2
0
        // PRAGMA MARK - Static
        public static void Show(ActionLabelViewConfig[] viewConfigs)
        {
            ActionLabelBar_.RecycleAllChildren();

            foreach (var viewConfig in viewConfigs)
            {
                ActionLabelView.Create(viewConfig.LocalizationKey, viewConfig.ActionType, ActionLabelBar_);
            }

            RefreshBarContainer();
            Localization.OnCultureChanged += RefreshBarContainer;

            Transition_.AnimateIn();
        }
Exemplo n.º 3
0
 public void AnimateOut(Action callback)
 {
     Transition_.AnimateOut(callback);
 }