You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* which wraps the actual TextInput. This wrapper layout (TextInputLayout) must be assigned to the nativeViewProtected as the entire
40
+
* NS Core uses nativeViewProtected for everything related to layout, so that it can be measured, added to the parent view as a child, ect.
41
+
*
42
+
* However, its internal view would be the actual TextView/TextInput and to allow that sub-view to have the normal TextView/TextInput
43
+
* class features, which we expose and to allow them to work on it, the internal TextView/TextInput is what the needs to have the class values applied to it.
44
+
*
45
+
* So all code that works on what is expected to be a TextView/TextInput should use `nativeTextViewProtected` so that any third party
46
+
* components that need to have two separate components can work properly without them having to duplicate all the TextBase (and decendants) functionality
47
+
* by just overriding the nativeTextViewProtected getter.
0 commit comments