-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from ChasakisD/feature/border-suppression
Suppress bottom border on picker
- Loading branch information
Showing
5 changed files
with
137 additions
and
39 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?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="http://xamarin.com/schemas/2014/forms/background" | ||
x:Class="XamarinBackgroundKitSample.PickerTestPage"> | ||
<StackLayout BackgroundColor="Red"> | ||
<controls:MaterialContentView Padding="16" Margin="16" Background="{controls:BgProvider Elevation=4, Color=White}" IsCornerRadiusHalfHeight="True"> | ||
<Picker controls:BackgroundEffect.Background="{x:Null}" Title="Test Title"> | ||
<Picker.ItemsSource> | ||
<x:Array Type="{x:Type x:String}"> | ||
<x:String>Test 1</x:String> | ||
<x:String>Test 2</x:String> | ||
<x:String>Test 3</x:String> | ||
</x:Array> | ||
</Picker.ItemsSource> | ||
</Picker> | ||
</controls:MaterialContentView> | ||
</StackLayout> | ||
</ContentPage> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace XamarinBackgroundKitSample | ||
{ | ||
public partial class PickerTestPage | ||
{ | ||
public PickerTestPage() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |