diff --git a/README.md b/README.md index f496f03..a78fa94 100644 --- a/README.md +++ b/README.md @@ -285,10 +285,10 @@ Defines the options for opening a URL in the system browser. #### AndroidBottomSheet -| Prop | Type | Description | -| ------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **`height`** | number | Sets the height of the bottom sheet. This will be a minimum of 50% of the screen's height. If no value is passed, we will default to the minimum value. | -| **`isFixed`** | boolean | Sets whether the bottom sheet is fixed. | +| Prop | Type | Description | +| ------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **`height`** | number | Sets the height of the bottom sheet, in pixels. Custom tabs will set the bottom height to at least 50% of the screen. If no value is passed, it will default to the minimum value. | +| **`isFixed`** | boolean | Sets whether the bottom sheet is fixed. | #### iOSSystemBrowserOptions diff --git a/src/definitions.ts b/src/definitions.ts index 2bbf1d1..e3cf0ee 100644 --- a/src/definitions.ts +++ b/src/definitions.ts @@ -117,9 +117,9 @@ export interface iOSSystemBrowserOptions { } export interface AndroidBottomSheet { - /** Sets the height of the bottom sheet. - * This will be a minimum of 50% of the screen's height. - * If no value is passed, we will default to the minimum value. */ + /** Sets the height of the bottom sheet, in pixels. + * Custom tabs will set the bottom height to at least 50% of the screen. + * If no value is passed, it will default to the minimum value. */ height: number; /** Sets whether the bottom sheet is fixed. */ isFixed: boolean;