public void In(NotifierMessage message) { CreateNotifyerArea(); _notifierArea.SetTheme(EnumMapper.GetThemeByName(Theme)); _notifierArea.SetIcon(EnumMapper.GetIconByName(Icon)); _notifierArea.SetText(message); AnimateIn(EnumMapper.GetAnimationByName(Animation)); }
private void AnimateOut(IAnimation animation) { animation.Out(EnumMapper.GetThemeByName(Theme), _notifierArea); }