private async void GenerateItems() { IsLoading = true; await Task.Delay(5000); for (int i = 0; i < 30; i++) { var contact = new Model(CustomerNames[i], ContactNumber[i]); ContactInfo.Add(contact); } IsLoading = false; }