Skip to content

Commit b88513a

Browse files
committed
fix(ios): text not supported anymore on fab (for now)
1 parent 5cb18ad commit b88513a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/floatingactionbutton/floatingactionbutton.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class FloatingActionButton extends FloatingActionButtonBase {
6262
[expandedProperty.setNative](value: boolean) {
6363
// UIView.animateWithDurationAnimations(0.25, () => {
6464
this.nativeViewProtected.mode = value ? MDCFloatingButtonMode.Expanded : MDCFloatingButtonMode.Normal;
65-
this.nativeViewProtected.setTitleForState(value ? this.text : null, UIControlState.Normal);
65+
// this.nativeViewProtected.setTitleForState(value ? this.text : null, UIControlState.Normal);
6666
this.nativeViewProtected.sizeToFit();
6767
// });
6868

0 commit comments

Comments
 (0)