Untitled
unknown
javascript
4 years ago
445 B
8
Indexable
(() =>
{
class TextFieldAndroidBugComponent extends LayoutComponent
{
render()
{
return View(
{},
TextField(
{
style: {
fontSize: 16,
},
placeholder: 'Some placeholder',
onChangeText: (text) => {
console.log('bug', text);
},
}
),
);
}
}
BX.onViewLoaded(() =>
{
layout.showComponent(new TextFieldAndroidBugComponent())
});
})();
Editor is loading...