Esempio n. 1
0
        private async void OpenTagPopover()
        {
            TagButtonVisible = false;
            CurrentTag       = await navigation.Navigate <TagViewModel, TagPayload, TagPresentation>(new TagPayload());

            TagButtonVisible = true;
            await loadDiscussions();
        }
Esempio n. 2
0
        public MainViewModel(IRepository Repository, IMvxNavigationService Navigation)
        {
            repository      = Repository;
            navigation      = Navigation;
            CurrentTag      = new TagPresentation();
            CurrentTag.Name = "steem";
            CurrentTagName  = CurrentTag.Name;

            TagButtonVisible = true;
        }