Skip to content

Instantly share code, notes, and snippets.

<FlyoutItem Title="Browse" Icon="tab_feed.png">
<Tab>
<ShellContent ContentTemplate="{DataTemplate local:ItemsPage}" />
</Tab>
</FlyoutItem>
@amr-swalha
amr-swalha / FeedSearchHandler.cs
Created July 18, 2019 03:24
FeedSearchHandler Example
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using Xamarin.Forms;
namespace MobileApp.Controls
{
public class FeedSearchHandler : SearchHandler
@amr-swalha
amr-swalha / Build.yaml
Created July 28, 2019 15:54
The build yaml file
trigger:
- master
pool:
vmImage: 'windows-latest'
steps:
- script: dotnet restore
displayName: 'nuget is restoring'
- script: dotnet build --configuration $(buildConfiguration)