Skip to content

Instantly share code, notes, and snippets.

@nurcinozer
Created August 1, 2019 13:48
Show Gist options
  • Save nurcinozer/801d01508b4a632afd390782a428d568 to your computer and use it in GitHub Desktop.
Save nurcinozer/801d01508b4a632afd390782a428d568 to your computer and use it in GitHub Desktop.
<StackLayout HorizontalOptions="FillAndExpand" Orientation="Horizontal" VerticalOptions="End" BackgroundColor="White" >
<StackLayout HorizontalOptions="CenterAndExpand" Orientation="Horizontal">
<StackLayout Orientation="Vertical" >
<Image Source="MusterilerIcon.png" TranslationY="5" />
<Button
Text="Müşteriler"
Margin="0"
TranslationY="-7"
BackgroundColor="Transparent"
Style="{StaticResource MenuText}"/>
</StackLayout>
<StackLayout Orientation="Vertical">
<!-- <Image Source="UrunlerIcon.png" />
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="OnAcceptTapped" NumberOfTapsRequired="1" />
</Label.GestureRecognizers>
<Label x:Name="UrunlerLabel" Text="Ürünler" Style="{StaticResource MenuText}"/>-->
<ImageButton Source="UrunlerIcon.png" Clicked="UrunlerClicked" BackgroundColor="Transparent" TranslationY="5" />
<Button
Text="Ürünler"
Margin="0"
TranslationY="-7"
BackgroundColor="Transparent"
Style="{StaticResource MenuText}"
Clicked="UrunlerClicked" />
</StackLayout>
<StackLayout Orientation="Vertical">
<Image Source="TedarikcilerIcon.png" TranslationY="5" />
<Button
Text="Tedarikçiler"
Margin="0"
TranslationY="-7"
BackgroundColor="Transparent"
Style="{StaticResource MenuText}"/>
</StackLayout>
<StackLayout Orientation="Vertical">
<Image Source="MenuIcon.png" TranslationY="5" />
<Button
Text="Menü"
Margin="0"
TranslationY="-7"
BackgroundColor="Transparent"
Style="{StaticResource MenuText}"/>
</StackLayout>
</StackLayout>
</StackLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment