Skip to content
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ Defines the options for opening a URL in the system browser.

#### AndroidBottomSheet

| Prop | Type | Description |
| ------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **`height`** | <code>number</code> | 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`** | <code>boolean</code> | Sets whether the bottom sheet is fixed. |
| Prop | Type | Description |
| ------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **`height`** | <code>number</code> | 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`** | <code>boolean</code> | Sets whether the bottom sheet is fixed. |


#### iOSSystemBrowserOptions
Expand Down
6 changes: 3 additions & 3 deletions src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down