Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
public partial class CarouselViewTests
{

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
public partial class CarouselViewTests
{

}
}
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/View/ViewHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public static void MapBorderView(IViewHandler handler, IView view)

UpdateHasContainer(handler, border != null);

((PlatformView?)handler.ContainerView)?.UpdateBorder(view);
((PlatformView?)handler.ContainerView)?.UpdateBorder(view);
}

static partial void MappingFrame(IViewHandler handler, IView view);
Expand Down
2 changes: 1 addition & 1 deletion src/Essentials/src/FilePicker/FilePicker.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface IFilePicker
/// <returns>File picking result object, or <see langword="null"/> if picking was cancelled by the user.</returns>
/// <remarks>
/// File types can be specified in order to limit files that can be selected, using a
/// <see cref="PickOptions"/> object. Note that this method may re-throw platform specific exceptions that
/// <see cref="PickOptions"/> object. Note that this method may re-throw platform specific exceptions that
/// occured during file picking. When calling <see cref="PickAsync(PickOptions?)"/> again while showing a file
/// picker, the <see cref="Task"/> object that was returned from the first call is cancelled. Be sure to
/// also handle the <see cref="TaskCanceledException"/> in this case.
Expand Down