forked from the49ltd/The49.Maui.BottomSheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [android] Fix "no sliding away" blocked in hidden mode - [android] Fix bottom sheet sometime displayed in hidden mode - [android] Fix handle not appearing - [android] [Demo app] Fix can't open the same demo item twice in a row - Breaking: removed DetentsCollection. Use a ResourceDictionary to choose between detents with OnPlatform
- Loading branch information
Showing
14 changed files
with
538 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Windows.Input; | ||
|
||
namespace The49.Maui.BottomSheet.Sample; | ||
|
||
public record DemoEntry | ||
{ | ||
public string Title { get; set; } | ||
public string Description { get; set; } | ||
public ICommand Command { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace The49.Maui.BottomSheet.Sample; | ||
|
||
public static class RandomColors | ||
{ | ||
private static readonly Random random = new(); | ||
|
||
public static Color RandomColor() | ||
{ | ||
return Color.FromRgb(random.Next(256), random.Next(256), random.Next(256)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.