Exemplo n.º 1
0
        public Webinar()
        {
            InitializeComponent();
            _restService = new RestServiceWebinar();


            const int RefreshDuration = 2;

            Prueba();
            get_webinar.RefreshCommand = new Command(async() => {
                get_webinar.IsRefreshing = true;
                await Task.Delay(TimeSpan.FromSeconds(RefreshDuration));
                Prueba();
                get_webinar.IsRefreshing = false;
            });
        }
Exemplo n.º 2
0
 public Webinar()
 {
     InitializeComponent();
     _restService = new RestServiceWebinar();
 }