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 982c497 commit fd79978Copy full SHA for fd79978
src/textview/textview.android.ts
@@ -115,7 +115,9 @@ export class TextView extends TextViewBase {
115
}
116
[hintProperty.setNative](value: string) {
117
const text = value === null || value === undefined ? null : value.toString();
118
- this.layoutView.setHint(text);
+ try {
119
+ this.layoutView.setHint(text);
120
+ } catch (error) {}
121
122
123
[helperColorProperty.setNative](value) {
0 commit comments