We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daed52a commit 4ec6140Copy full SHA for 4ec6140
src/textfield/textfield.android.ts
@@ -280,9 +280,9 @@ export class TextField extends TextFieldBase {
280
}
281
282
[fontInternalProperty.setNative](value: Font | UIFont) {
283
- // super[fontInternalProperty.setNative](value);
284
if (!this.formattedText || !(value instanceof Font)) {
285
this.nativeViewProtected.setTypeface(value instanceof Font ? value.getAndroidTypeface() : value);
+ this.nativeTextViewProtected.setTypeface(value instanceof Font ? value.getAndroidTypeface() : value);
286
287
288
[paddingTopProperty.setNative](value: Length) {
0 commit comments