Weird lines appearing
See original GitHub issueHi there, noticing an issue have attached gif:
Part of code is this::
PanCardView.CarouselView cardsView = new PanCardView.CarouselView() { ItemTemplate = new DataTemplate(() => new ImageCardItemView()), ItemsSource = list, SelectedIndex = currentPhotoIndex, SlideShowDuration = 3500 };
`BackgroundColor = Settings.XeniaBlackThemeColorAlpha;
_image = new CachedImage
{
Aspect = Aspect.AspectFill,
};
frame = new Frame()
{
Padding = 0,
CornerRadius = 10,
HasShadow = false,
HorizontalOptions = LayoutOptions.Center,
IsClippedToBounds = true,
VerticalOptions = LayoutOptions.Center,
WidthRequest = 300,
HeightRequest = 300
};
_image.SetBinding(CachedImage.SourceProperty, "Source");
frame.Content = _image;
Content = frame;`
…
Oddly Im not getting this issue on your sample… any ideas?
Issue Analytics
- State:
- Created 5 years ago
- Comments:33 (19 by maintainers)
Top Results From Across the Web
How to Fix Horizontal Lines on a Computer Screen
Look to see when the lines appear on the screen as you open it. If the lines only occur at a certain angle,...
Read more >Weird, subtle horizontal lines on monitor
Suddenly today one of my monitors started looking weird, with these subtle horizontal lines covering the entire screen, along with some ...
Read more >Question - Strange lines appearing and disappearing
HsynX said: the lines appear on the screen and disappear after a while, but they come back after a while. Either a faulty...
Read more >is there a fix for these weird lines while gaming?
is there a fix for these weird lines while gaming?
Read more >global | Fix Vertical and Horizontal Lines on Phone Screen
If the lines are appearing due to some minor glitch, a simple restart will fix it. Pressing the volume button for a couple...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
sorry for my absence but im backkkkk…
I think this will be an issue within the circleframe render. Looks most likely to do with when it overrides the original drawing elements, it is momentarily rendering a regular frame, then it is replacing it with the new frame, then on next render it is doing the same.
Ill take a look into the renderer over weekend and see what I can find.
Sample.zip
Here you go 😃