Skip to content

Commit ebe5277

Browse files
committed
Fix uploaded wrong images
1 parent eae262f commit ebe5277

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

Android.png

-19.6 KB
Loading

Example/CalendarDemo/CalendarDemo/App.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ public App()
1010
{
1111
// The root page of your application
1212
MainPage = new ContentPage
13-
{
13+
{
14+
BackgroundColor= Color.White,
1415
Content = new StackLayout
1516
{
16-
Padding = 5,
17+
Padding = new Thickness(5,Device.OS == TargetPlatform.iOS ? 25 : 5,5,5),
1718
Children = {
1819
new Calendar { MaxDate=DateTime.Now.AddDays(30), MinDate=DateTime.Now.AddDays(-1) }
1920
}

XamForms.Controls.Calendar/Calendar.xaml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
VerticalTextAlignment="Center"
1717
HorizontalTextAlignment="Center"
1818
FontAttributes="Bold"
19+
TextColor="Black"
1920
HorizontalOptions="FillAndExpand"
2021
x:Name="CenterLabel"
2122
Text="OCTOBER 2013" />

iOS.png

-29.5 KB
Loading

icon.png

-16.3 KB
Loading

0 commit comments

Comments
 (0)