ModernXamarinCalendar 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package ModernXamarinCalendar --version 1.0.1
NuGet\Install-Package ModernXamarinCalendar -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ModernXamarinCalendar" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ModernXamarinCalendar --version 1.0.1
#r "nuget: ModernXamarinCalendar, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ModernXamarinCalendar as a Cake Addin
#addin nuget:?package=ModernXamarinCalendar&version=1.0.1

// Install ModernXamarinCalendar as a Cake Tool
#tool nuget:?package=ModernXamarinCalendar&version=1.0.1

ModernXamarinCalendar

https://github.com/mattmorgan6/ModernXamarinCalendar

Documentation

Set Up

Step 1

Install the Nuget Package using Nuget Package Manager or in the Package Manager Console run command:

Install-Package ModernXamarinCalendar -Version 1.0.0 
Step 2

In the XAML content page where you would like the Calendar to go (such as MainPage.xaml), write within the Content Page Tag

xmlns:control="clr-namespace:ModernXamarinCalendar;assembly=ModernXamarinCalendar"
Step 3

Within your layout in the same XAML Page, place

      <control:WeekControl x:Name="CalendarWeekControl"
                           HorizontalOptions="CenterAndExpand"
                           BackgroundColor="SteelBlue"/>
                         
Step 4

In the c# code for your content page (such as MainPage.xaml.cs)

    public void DateSelectedChanged(object sender, EventArgs e)
    {
        WeekControl calendar = sender as WeekControl;

        // insert code here that you want to use the date selected for...
        
        // control.DateSelected returns a DateTime for the selected day.

        Debug.WriteLine(calendar.DateSelected.ToString());
    }
    
    
Step 5

In the same c# file, write within the constructor

CalendarWeekControl.DataSelectedChanged += DateSelectedChanged;

Step 6

Insert Images

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 2,296 1/11/2020
1.0.3 478 1/6/2020
1.0.2 546 5/28/2019
1.0.1 514 5/28/2019
1.0.0 500 5/25/2019

description was updated