The49.Maui.BottomSheet 1.0.0-rc2

This is a prerelease version of The49.Maui.BottomSheet.
There is a newer version of this package available.
See the version list below for details.
dotnet add package The49.Maui.BottomSheet --version 1.0.0-rc2
NuGet\Install-Package The49.Maui.BottomSheet -Version 1.0.0-rc2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="The49.Maui.BottomSheet" Version="1.0.0-rc2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add The49.Maui.BottomSheet --version 1.0.0-rc2
#r "nuget: The49.Maui.BottomSheet, 1.0.0-rc2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install The49.Maui.BottomSheet as a Cake Addin
#addin nuget:?package=The49.Maui.BottomSheet&version=1.0.0-rc2&prerelease

// Install The49.Maui.BottomSheet as a Cake Tool
#tool nuget:?package=The49.Maui.BottomSheet&version=1.0.0-rc2&prerelease

NOTE: Coming from Gerald Versluis' video? Make sure to check the section on what changed since the video was made

What is Maui.BottomSheet?

Maui.BottomSheet is a .NET MAUI library used to display pages as Bottom Sheets.

Setup

Enable this plugin by calling UseBottomSheet() in your MauiProgram.cs

using Maui.Insets;

public static class MauiProgram
{
	public static MauiApp CreateMauiApp()
	{
		var builder = MauiApp.CreateBuilder();
		
		// Initialise the plugin
		builder
                    .UseMauiApp<App>()
                    .UseBottomSheet();

		// the rest of your logic...
	}
}

XAML usage

In order to make use of the plugin within XAML you can use this namespace:

xmlns:the49="https://schemas.the49.com/dotnet/2023/maui"

Quick usage

Simply create a ContentPage. Replace the extended class with BottomSheetPage in code-behind and in XAML:

using The49.Maui.BottomSheet;

public class MySheetPage : BottomSheetPage
{
    public MySheetPage()
    {
        InitializeComponent();
    }
}
<the49:BottomSheet xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:the49="https://schemas.the49.com/dotnet/2023/maui"
             x:Class="MyApp.MySheetPage"
             Title="MySheetPage">
            
</the49:BottomSheet>

The sheet can be opened by calling the ShowAsync(Window) method of the page. It can be closed using DismissAsync():


const page = new MySheetPage();

// Pass the window in which the sheet should show. Usually accessible from any other page of the app.
page.ShowAsync(Window);

// Call to programatically close the sheet
page.DismissAsync();

An extra parameter can be passed to both ShowAsync and DismissAsync to enable/disable the animations.

On Android, make sure your application's theme extends the Material3 theme. This mean you need a Platforms/Android/Resources/values/styles.xml file with the following content:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="Maui.MainTheme" parent="Theme.Material3.DayNight"></style>
</resources>

If you already have this file, just make sure the Maui.MainTheme style inherits the Theme.Material3.DayNight parent.

API

This library offers a BottomSheetPage, an extension of the ContentView with extra functionality

Properties

The following properties are available to use:

Name Type Default value Description Android iOS
HasBackdrop bool false Displays the sheet as modal. This has no effect on whether or not the sheet can be dismissed using gestures. ✅*
HasHandle bool false If true, display a drag handle at the top of the sheet
HandleColor Color null Sets the color of the sheet's handle is HasHandle is true ❌**
IsCancelable bool true If false, prevents the dismissal of the sheet with user gestures
Detents DetentsCollection new DetentsCollection() { new ContentDetent() }) A collection of detents where the sheet will snap to when dragged. (See the Detents section for more info)
SelectedDetent Detent null A two way property defining which detent is currently selected. Changes as the user slides, and updates the sheet's position when changed ✅*

* iOS doesn't support the property largestUndimmedDetentIdentifier or selectedDetentIdentifer for custom detents as of right now. Se iOS documentation for largestUndimmedDetentIdentifier and selectedDetentIdentifer Only when the FullscreenDetent and/or MediumDetent are used those properties will work.

** iOS doesn't give any access to the grabber view

Detents:

Detents are snap point at which the sheet will stop when a drag gesture is released See iOS definition.

On Android only 3 detents are supported (See implemenation section for more info).

On iOS, detents are only fully supported for iOS 16 and up. On iOS 15, medium and large detents are used instead See iOS documentation.

Available detents

Name Parameter Description
FullscreenDetent Full height of the screen
ContentDetent Calculates the height of the page's content
AnchorDetent Anchor Anchor expects a View and will set its height to the Y position of that view. This is used to peek some content, then reveal more when the sheet is dragged up
HeightDetent Height Use a dp value to specify the detent height
RatioDetent Ratio Use a ratio of the full screen height
MediumDetent A detent at the halfway point of the screen

A IsDefault property can be used to select the detent that will be shown when calling ShowAsync. Otherwise the smallest detent is used.

Example:

<the49:BottomSheet xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:the49="https://schemas.the49.com/dotnet/2023/maui"
             x:Class="MyApp.SheetPage"
             Title="SheetPage">
    <the49:BottomSheet.Detents>
        
        <the49:FullscreenDetent />
        
        <the49:ContentDetent IsDefault="True" />
        
        <the49:HeightDetent Height="120" />
        
        <the49:RatioDetent Height="0.45" />
        
        <the49:AnchorDetent Anchor="{x:Reference divider}" />
    </the49:BottomSheet.Detents>
    <VerticalStackLayout Spacing="16">
        <VerticalStackLayout>
            
        </VerticalStackLayout>
        <BoxView x:Name="divider" />
        <VerticalStackLayout>
            
        </VerticalStackLayout>
    </VerticalStackLayout>
</the49:BottomSheetPage>

Custom detent

You can create a custom detent by extending the default Detent class and implementing its GetHeight abstract method

Events

The following events are available to use:

Name EventArg Description Android iOS
Dismissed DismissOrigin Invoked when the sheet is dismissed. The EventArgs will either be DismissOrigin.Gesture when the user dragged it down or DismissOrigin.Programmatic when Dismiss is called.
Showing EventArg.Emtpy Called when the sheet is about to animate in. This is the best time to configure the behavior of the sheet for specific platforms (See Platform specifics)
Shown EventArg.Emtpy Called when the sheet finished animating in.

Platform specifics

On Android, the Google.Android.Material.BottomSheet.BottomSheetBehavior is made available under sheet.Controller.Behavior, to ensure the property is set, access it when the Showing event is fired. Learn more about it here: BottomSheetBehavior  |  Android Developers

On iOS, the UIKit.UISheetPresentationController is made available under sheet.Controller.SheetPresentationController, to ensure the property is set, access it when the Showing event is fired. Learn more about it here: UISheetPresentationController | Apple Developer Documentation

Common questions

How can I remove the backdrop on iOS

A sheet without backdrop works on iOS only if using MediumDetent and FullscreenDetent. Using the OnPlatform tool replace the detent on iOS to only use those and it will work.

Note: In the future, iOS might allow custom detents to support the largestUndimmableDetentIdentifier. If that happens, this plugin will be updated to support it

Here is how you can use the detents you need on Android, and use the detents compatible with HasBackdrop and SelectedDetent:

<the49:BottomSheet xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:the49="https://schemas.the49.com/dotnet/2023/maui"
             x:Class="MyApp.SheetPage"
             Title="SheetPage">
    <the49:BottomSheet.Detents>
        <OnPlatform>
            <On Platform="Android">
                <the49:FullscreenDetent />
                <the49:ContentDetent />
                <the49:AnchorDetent Anchor="{x:Reference divider}" />
            </On>
            <On Platform="iOS">
                <the49:FullscreenDetent />
                <the49:MediumDetent />
            </On>
        </OnPlatform>
    </the49:BottomSheet.Detents>
    <VerticalStackLayout Spacing="16">
        <VerticalStackLayout>
            
        </VerticalStackLayout>
        <BoxView x:Name="divider" />
        <VerticalStackLayout>
            
        </VerticalStackLayout>
    </VerticalStackLayout>
</the49:BottomSheetPage>

How can I change the detent used when showing the sheet

You can either add IsDefault="True" to the detent or set SelectedDetent to one of your detents before calling ShowAsync.

How do I prevent the rounded corner to animate on Android?

var sheet = new MySheet();
sheet.Showing += (s, e) =>
{
    page.Controller.Behavior.DisableShapeAnimations();
};
sheet.ShowAsync(Window);

How do I change the corner radius?

This will be different on Android and iOS as they each provide their own design implementation

On iOS

var sheet = new MySheet();
sheet.Showing += (s, e) =>
{
    sheet.Controller.SheetPresentationController.PreferredCornerRadius = 2;
};
sheet.ShowAsync(Window);

On Android (Using Android styles). In your Platforms/Android/Resources/values/themes.xml (or equivalent) add the following styles

<style name="ThemeOverlay.App.BottomSheetDialog" parent="ThemeOverlay.Material3.BottomSheetDialog">
    <item name="bottomSheetStyle">@style/ModalBottomSheetDialog</item>
</style>

<style name="ModalBottomSheetDialog" parent="Widget.Material3.BottomSheet.Modal">
    <item name="shapeAppearance">@style/ShapeAppearance.App.LargeComponent</item>
</style>

<style name="ShapeAppearance.App.LargeComponent" parent="ShapeAppearance.Material3.LargeComponent">
    <item name="cornerFamily">rounded</item>
    <item name="cornerSize">2dp</item>
</style>

And in your <style name="Maui.MainTheme" ...> add the following item:

<item name="bottomSheetDialogTheme">@style/ThemeOverlay.App.BottomSheetDialog</item>

Implementation details

iOS

The bottom sheet on iOS is presented using the UIViewController's PresentViewController and configuring the sheet with UISheetPresentationController.

Detents are created using the custom method

Android

The Material library's bottom sheet is used.

A xml layout contains a Frame, CoordinatorLayout and another Frame with the com.google.android.material.bottomsheet.BottomSheetBehavior behavior. The layout is inflated and added to the DrawerLayout is using AppShell or CoordinatorLayout is using NavigationPage

A backdrop is added and animated when requested

Detents are created using a combination of expandedOffset, halfExpandedRatio and peekHeight. These are the only configurable stop points for the bottom sheets, and that is why this library only supports up to 3 detents on Android.

Changes since Gerald Versluis' video

If you're coming from Gerald Versluis' video, a few things have changed. Here is what you need to know:

  • Property names have been updated to be more consistent, discoverable and aligned with standard MAUI properties:

    • ShowHandle is now HasHandle
    • Cancelable is now IsCancelable
    • IsModal is now HasBackdrop
  • 2 new properties have been added:

    • HandleColor
    • SelectedDetent
  • Methods have been renamed

    • Show is now ShowAync and completes when the animation of the sheet finishes. It also accepts a boolean to turn off animations
    • Dismiss is now DismissAync and completes when the animation of the sheet finishes. It also accepts a boolean to turn off animations

Made within The49

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-android33.0 is compatible.  net7.0-ios was computed.  net7.0-ios16.1 is compatible.  net7.0-maccatalyst was computed.  net7.0-maccatalyst16.1 is compatible.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net7.0-windows10.0.19041 is compatible.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.
  • net7.0-android33.0

    • No dependencies.
  • net7.0-ios16.1

    • No dependencies.
  • net7.0-maccatalyst16.1

    • No dependencies.
  • net7.0-windows10.0.19041

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.3 8,647 2/13/2024
8.0.2 7,320 1/16/2024
8.0.1 1,069 1/12/2024
8.0.0 464 1/11/2024
1.0.4 10,694 10/13/2023
1.0.3 2,752 9/20/2023
1.0.2 1,091 9/13/2023
1.0.1 7,145 7/13/2023
1.0.0 922 7/10/2023
1.0.0-rc9 4,536 7/3/2023
1.0.0-rc8 1,074 6/29/2023
1.0.0-rc7 418 6/28/2023
1.0.0-rc6 556 6/27/2023
1.0.0-rc5 743 6/21/2023
1.0.0-rc4 587 6/19/2023
1.0.0-rc3 452 6/16/2023
1.0.0-rc2 1,965 5/26/2023
1.0.0-rc12 373 7/7/2023
1.0.0-rc11 400 7/6/2023
1.0.0-rc10 330 7/6/2023
1.0.0-rc1 756 5/20/2023
1.0.0-alpha7 760 5/9/2023
1.0.0-alpha6 1,818 4/25/2023
1.0.0-alpha5 395 4/24/2023
1.0.0-alpha4 969 2/8/2023
1.0.0-alpha3 396 2/8/2023
1.0.0-alpha2 398 2/8/2023
1.0.0-alpha1 440 1/17/2023