private void FillRepeater()
        {
            int numbertimes = VirtualList.Count / 10;

            if (numbertimes > 0)
            {
                try
                {
                    StackLayout stackLayout = new StackLayout();
                    for (int j = 0; j < 10; j++)
                    {
                        stackLayout.Children.Add(new Card(new CardProperties()
                        {
                            Id          = VirtualList[j].Id,
                            Title       = VirtualList[j].Title,
                            Description = VirtualList[j].Description,
                            ImagePath   = VirtualList[j].ImagePath,
                            IsLiked     = VirtualList[j].IsLiked
                        }));
                    }
                    VirtualList.RemoveRange(0, 10);
                    repeater.Children.Add(stackLayout);
                    ScrolledToBottom = 0;
                }
                catch (Exception) {}
            }
        }