i have this code and i dont know why it doesnt let my textinput work properly. When i try add a text inside my text input it says the text function isnt supported.
<App Background="#333">
Login Don’t have an account ? Register Now
<Grid ColumnData="1,1,1,1" Height="45" Dock="Bottom">
<Style>
<Image Padding="7" />
</Style>
<Panel Background="#34495e">
<Image ux:Name="tabBarImage1" File="Assets/icon-hexagon.png" />
<Clicked pages.Active="page1"/>
</Panel>
<Panel Background="#3498db">
<Image ux:Name="tabBarImage2" File="Assets/icon-star.png" />
<Clicked pages.Active="page2"/>
</Panel>
<Panel Background="#aa3377">
<Image ux:Name="tabBarImage3" File="Assets/icon-square.png" />
<Clicked pages.Active="page3"/>
</Panel>
<Panel Background="#88cc22">
<Image ux:Name="tabBarImage4" File="Assets/icon-triangle.png" />
<Clicked pages.Active = "page4"/>
</Panel>
</Grid>
this is the code i am using.