Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

v94.4.0

Choose a tag to compare

@fluxminds fluxminds released this 27 Nov 18:03
· 1867 commits to stable since this release

This minor release introduces new APIs to ActionSheet, BottomSheet and FlexibleHeader. Additionally, it includes new theming extension for TextControls component.

New features

TextControls component now has a theming extension.

MDCFilledTextField *filledTextField = [[MDCFilledTextField alloc] init];
MDCContainerScheme *containerScheme = [[MDCContainerScheme alloc] init];

[filledTextField applyThemeWithScheme:containerScheme];
let filledTextField = MDCFilledTextField()
let scheme = MDCContainerScheme()

filledTextField.applyTheme(withScheme: scheme)

API changes

ActionSheet

MDCActionSheetController

new property: contentEdgeInsets in MDCActionSheetController

BottomSheet

MDCBottomSheetController

new property: dismissOnDraggingDownSheet in MDCBottomSheetController

MDCBottomSheetPresentationController

new property: dismissOnDraggingDownSheet in MDCBottomSheetPresentationController

MDCBottomSheetTransitionController

new property: dismissOnDraggingDownSheet in MDCBottomSheetTransitionController

FlexibleHeader

MDCFlexibleHeaderView(ShiftBehavior)

new property: shiftedOffscreen in MDCFlexibleHeaderView(ShiftBehavior)

Component changes

Changes

ActionSheet

BottomSheet

Buttons

FeatureHighlight

FlexibleHeader

ShadowElevations

TextControls