NeoMAD 4.8.2 release notes¶
July 07, 2021
ModalBottomSheet¶
A new class to display modal bottom sheet: com.neomades.ui.sheet.ModalBottomSheet.
ModalBottomSheet bottomSheet = new ModalBottomSheet();
VerticalLayout content = new VerticalLayout();
// Complete "content" layout here
defaultBottomSheet.setContent(content);
getController().showBottomSheet(bottomSheet);
Fixes¶
- Fix iPhoneX familly display in fullscreen mode
- Fix layout errors that may occur when forcing an orientation to landscape or portrait on a specific screen for iOS
- Fix Podfile generation on Windows computer (pod installation command must still be run on a Mac before opening the Xcode project)