jamesmontemagno/FloatingActionButton-for-Xamarin.Android

Getting exception while trying to implement on Xamarin.Forms project

ShahriatHossain opened this issue · 3 comments

Getting such error:
Error CS0400 The type or namespace name 'Refractored' could not be found in the global namespace (are you missing an assembly reference?)

Here I have tried to implement your instruction:

Integration Xamarin.Forms

See sample app for integration

XAML Example:

<ContentPage.Content>
	<AbsoluteLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
			<ListView 
					  AbsoluteLayout.LayoutFlags="All"
					  AbsoluteLayout.LayoutBounds="0,0,1,1">

		</ListView>
		<fab:FloatingActionButtonView
			ImageName="toolbar_add.png"
			ColorNormal="{StaticResource Primary}"
			ColorPressed="{StaticResource PrimaryDark}"
			ColorRipple="{StaticResource PrimaryDark}"
			x:Name="FloatingActionButtonAdd"
			IsVisible="False"
			AbsoluteLayout.LayoutFlags="PositionProportional"
			AbsoluteLayout.LayoutBounds="1, 1, AutoSize, AutoSize"/>
	</AbsoluteLayout>
</ContentPage.Content>

Hi James
I add the fab namespace but I get the same error like ShahriatHossain

Works great for me you can look at the sample. Make sure you install it into all of your projects.