Issue
I'm trying to add a 1px border around the standard ListView component that ships with Xamarin.Forms and BorderColor property does not appear to exist.
How do I achieve this?
Solution
You can have the frame act as your border by using padding. Just remember to turn shadows off.
<Frame BackgroundColor="Black" Padding="1" CornerRadius="0" HasShadow="False">
<!-- Your ListView here... make sure to set a BackgroundColor -->
</Frame>
Answered By - Jack
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.