You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using @nativescript-community/ui-material-bottomsheet in a NativeScript Angular project, and the bottom sheet is not expanding properly on iOS 18.1, but it works fine on Android.
Video
Screen_Recording_2025-02-24_at_5.14.22_PM.mov
Main Component
openBottomSheet(): void {
const options: BottomSheetOptions = {
viewContainerRef: this.viewContainerRef,
peekHeight: 200, // Expected to start at 200dp and be expandable
trackingScrollView: "test" // Ensuring smooth scrolling
};
this.bottomSheet.show(DetailsComponent, options).subscribe((result) => {
console.log("Option selected:", result);
});
}
}
✅ Android → The bottom sheet starts at peekHeight: 200 and expands properly.
❌ iOS 18.1 → The bottom sheet does not expand beyond peekHeight, even when dragging.
I am using @nativescript-community/ui-material-bottomsheet in a NativeScript Angular project, and the bottom sheet is not expanding properly on iOS 18.1, but it works fine on Android.
Video
Screen_Recording_2025-02-24_at_5.14.22_PM.mov
Main Component
Details Component
Dependencies
✅ Android → The bottom sheet starts at peekHeight: 200 and expands properly.
❌ iOS 18.1 → The bottom sheet does not expand beyond peekHeight, even when dragging.