SuavePirate / Xamarin.Forms.Controls.FloatingActionButton

A custom view to create a FloatingActionButton for both Android and iOS as part of Material Design
MIT License
120 stars 38 forks source link

Put a Label on the side of the FabButton #16

Closed mcferdev closed 6 years ago

mcferdev commented 6 years ago

So, my Fab Button its working fine, but i need to put a label (caption) about what the button do like this.

How to do this ? My code:

55 75 55 75
mcferdev commented 6 years ago

So. Easiest that i thought. I am not on VS. So, can have some sintax errors.

Do like this :

<Grid>
<listview />
<fabbutton verticaloptions="End" HorizontalOptions="End" Margin="0,0,10,10" />
<Frame verticaloptions="End" HorizontalOptions="End" Margin="0,0,80,10" Opacity="0.5" BackGroundcolor="Black">
    <Label Text="teste" VerticalOptions="Fill" HorizontalOptions="Fill" TextColor="White"/>
</Frame>
</Grid>