This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata minClientVersion="2.8.1"> | |
<id>XamForms.Enhanced</id> | |
<version>1.0.4</version> | |
<title>Custom controls and extensions for Xamarin.Forms</title> | |
<authors>Lukasz Lawicki</authors> | |
<owners>Lukasz Lawicki</owners> | |
<licenseUrl>https://github.com/lubiepomaranczki/XamForms.Enhanced/blob/master/LICENSE</licenseUrl> | |
<projectUrl>https://github.com/lubiepomaranczki/XamForms.Enhanced</projectUrl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private string searchText; | |
public string SearchText | |
{ | |
get { return searchText; } | |
set { SetProperty(ref searchText, value); } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public ObservableProperty<string> SearchText = new ObservableProperty<string>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:controls="clr-namespace:XamForms.Enhanced.Views;assembly=XamForms.Enhanced" | |
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms" | |
prism:ViewModelLocator.AutowireViewModel="True" | |
x:Class="Medium.Sample.Views.SearchText" | |
Title="{Binding Title}"> | |
<ContentPage.Content> | |
<SearchBar Text="{Binding SearchText.Value}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public RegisterPageViewModel() | |
{ | |
Observe(); | |
Title = "SearchText"; | |
} | |
public void Observe() | |
{ | |
Observable.FromEventPattern(ev => SearchText.DataChanged += ev, ev => SearchText.DataChanged -= ev) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Runtime.CompilerServices; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
namespace CustomLoader | |
{ | |
public class CustomLoader : Image | |
{ | |
#region Fields |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PATH_TO_PROJECT="$1" | |
SONAR_TOKEN="{YOUR-TOKEN}" | |
PROJECT_NAME="$( echo "$1" | sed 's@.*/@@' )" | |
if [[ -z "$PROJECT_NAME" ]]; then | |
echo "Project name can't be null. Either project does not exist or you have / at the end of path" | |
exit; | |
fi |
OlderNewer