Good afternoon,
I have this code:
<forms:SignaturePadCanvasView
BackgroundColor="Black"
WidthRequest="250"
HeightRequest="350"
StrokeColor="White"
StrokeWidth="3"
/>
<Button Text="test"
Clicked="onclick" />
and when putting the layout to see the two controls, an exception jumps me saying that it does not find in ... 2014 / forms the layout info used:
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:rowCount="2"
android:columnCount="2">
<forms:SignaturePadCanvasView
BackgroundColor="Black"
WidthRequest="250"
HeightRequest="350"
StrokeColor="White"
StrokeWidth="3"
/>
<Button Text="test"
Clicked="onclick" />
</GridLayout>
Unhandled Exception:
Xamarin.Forms.Xaml.XamlParseException: Position 8: 6. Type GridLayout not found in xmlns link
Any ideas of what may be happening?
Thanks