fuget.org
Xamarin.CommunityToolkit
by Microsoft
1.3.0-compat-alpha3
25 Nov 21
Toggle Dropdown
Version 2
2.0.6
1 May 23
2.0.5
16 Sep 22
2.0.4
12 Jul 22
2.0.2
3 May 22
2.0.1
18 Mar 22
2.0.0
27 Jan 22
Version 1
1.3.2
11 Jan 22
1.3.1
29 Nov 21
1.3.0
2 Nov 21
1.3.0-pre2
13 Aug 21
1.3.0-pre1
13 Jul 21
1.3.0-compat-alpha3
25 Nov 21
1.2.0
2 Jul 21
1.2.0-pre2
14 May 21
1.2.0-pre1
7 May 21
1.1.0
22 Mar 21
1.1.0-pre2
12 Mar 21
1.1.0-pre1
23 Feb 21
1.0.3
22 Feb 21
1.0.2
21 Jan 21
1.0.1
13 Jan 21
1.0.0
7 Jan 21
1.0.0-pre6
15 Dec 20
1.0.0-pre5
17 Nov 20
1.0.0-pre4
21 Oct 20
1.0.0-pre3
14 Sep 20
1.0.0-pre2
25 Aug 20
1.0.0-pre1
11 Aug 20
API Diff
with 1.3.0-pre1
Toggle Dropdown
Version 2
2.0.6
1 May 23
2.0.5
16 Sep 22
2.0.4
12 Jul 22
2.0.2
3 May 22
2.0.1
18 Mar 22
2.0.0
27 Jan 22
Version 1
1.3.2
11 Jan 22
1.3.1
29 Nov 21
1.3.0
2 Nov 21
1.3.0-pre2
13 Aug 21
1.3.0-pre1
13 Jul 21
1.3.0-compat-alpha3
25 Nov 21
1.2.0
2 Jul 21
1.2.0-pre2
14 May 21
1.2.0-pre1
7 May 21
1.1.0
22 Mar 21
1.1.0-pre2
12 Mar 21
1.1.0-pre1
23 Feb 21
1.0.3
22 Feb 21
1.0.2
21 Jan 21
1.0.1
13 Jan 21
1.0.0
7 Jan 21
1.0.0-pre6
15 Dec 20
1.0.0-pre5
17 Nov 20
1.0.0-pre4
21 Oct 20
1.0.0-pre3
14 Sep 20
1.0.0-pre2
25 Aug 20
1.0.0-pre1
11 Aug 20
Xamarin.CommunityToolkit.1.3.0-compat-alpha3.nupkg
nuget.org
github.com
MIT License
<
PackageReference
Include
=
"Xamarin.CommunityToolkit"
Version
=
"1.3.0-compat-alpha3"
/>
Frameworks
monoandroid10.0
net471
net472
netcoreapp3.1
netstandard1.0
netstandard2.0
netstandard2.1
tizen40
uap10.0.19041
xamarinios10
xamarinmac20
xamarintvos10
xamarinwatchos10
Dependencies
Xamarin.Forms 5.0.0.2125
API Diff between 1.3.0-compat-alpha3 and 1.3.0-pre1
64
Additions
13
Removals
Xamarin.CommunityToolkit.Behaviors
public
abstract
class
CompoundAnimationBase
:
AnimationBase
public
static
readonly
BindableProperty
IsRepeatedProperty
public
bool
IsRepeated
{
get
;
set
; }
protected
CompoundAnimationBase
()
public
Task
Animate
(
CancellationToken
?
cancellationToken
,
View
[]
views
)
protected
abstract
Animation
CreateAnimation
(
View
[]
views
)
public
class
RubberBandAnimation
:
CompoundAnimationBase
public
RubberBandAnimation
()
public
class
TadaAnimation
:
CompoundAnimationBase
public
static
readonly
BindableProperty
MaximumScaleProperty
public
static
readonly
BindableProperty
MinimumScaleProperty
public
static
readonly
BindableProperty
RotationAngleProperty
public
double
MaximumScale
{
get
;
set
; }
public
double
MinimumScale
{
get
;
set
; }
public
double
RotationAngle
{
get
;
set
; }
public
TadaAnimation
()
Xamarin.CommunityToolkit.Effects
public
static
class
SemanticEffect
public
static
readonly
BindableProperty
SemanticInclusionProperty
public
static
SemanticInclusion
GetSemanticInclusion
(
BindableObject
view
)
public
static
void
SetSemanticInclusion
(
BindableObject
view
,
SemanticInclusion
value
)
Xamarin.CommunityToolkit.Effects.Semantic
public
enum
SemanticInclusion
Default
=
0
Exclude
=
2
ExcludeWithChildren
=
3
Include
=
1
Xamarin.CommunityToolkit.UI.Views
public
class
DrawingLineCompletedEventArgs
:
EventArgs
public
Line
Line
{
get
; }
public
DrawingLineCompletedEventArgs
(
Line
line
)
public
class
DrawingView
:
View
public
static
readonly
BindableProperty
DrawingCompletedCommandProperty
public
static
readonly
BindableProperty
EnableSmoothedPathProperty
public
static
readonly
BindableProperty
GranularityProperty
public
static
readonly
BindableProperty
LineColorProperty
public
static
readonly
BindableProperty
LineWidthProperty
public
static
readonly
BindableProperty
PointsProperty
public
static
readonly
BindableProperty
DefaultLineColorProperty
public
static
readonly
BindableProperty
DefaultLineWidthProperty
public
static
readonly
BindableProperty
DrawingLineCompletedCommandProperty
public
static
readonly
BindableProperty
LinesProperty
public
static
readonly
BindableProperty
MultiLineModeProperty
public
ICommand
DrawingCompletedCommand
{
get
;
set
; }
public
bool
EnableSmoothedPath
{
get
;
set
; }
public
int
Granularity
{
get
;
set
; }
public
Color
LineColor
{
get
;
set
; }
public
float
LineWidth
{
get
;
set
; }
public
ObservableCollection
<
Point
>
Points
{
get
;
set
; }
public
Color
DefaultLineColor
{
get
;
set
; }
public
float
DefaultLineWidth
{
get
;
set
; }
public
ICommand
DrawingLineCompletedCommand
{
get
;
set
; }
public
ObservableCollection
<
Line
>
Lines
{
get
;
set
; }
public
bool
MultiLineMode
{
get
;
set
; }
public
event
EventHandler
<
DrawingLineCompletedEventArgs
>
DrawingLineCompleted
public
static
Stream
GetImageStream
(
IEnumerable
<
Point
>
points
,
Size
imageSize
,
float
lineWidth
,
Color
strokeColor
,
Color
backgroundColor
)
public
static
Stream
GetImageStream
(
IEnumerable
<
Line
>
lines
,
Size
imageSize
,
Color
backgroundColor
)
public
class
Line
:
BindableObject
public
static
readonly
BindableProperty
EnableSmoothedPathProperty
public
static
readonly
BindableProperty
GranularityProperty
public
static
readonly
BindableProperty
LineColorProperty
public
static
readonly
BindableProperty
LineWidthProperty
public
static
readonly
BindableProperty
PointsProperty
public
bool
EnableSmoothedPath
{
get
;
set
; }
public
int
Granularity
{
get
;
set
; }
public
Color
LineColor
{
get
;
set
; }
public
float
LineWidth
{
get
;
set
; }
public
ObservableCollection
<
Point
>
Points
{
get
;
set
; }
public
Line
()
public
static
Stream
GetImageStream
(
IEnumerable
<
Point
>
points
,
Size
imageSize
,
float
lineWidth
,
Color
strokeColor
,
Color
backgroundColor
)
public
Stream
GetImageStream
(
double
imageSizeWidth
,
double
imageSizeHeight
,
Color
backgroundColor
)
public
class
MediaElement
:
View
,
IMediaElementController
public
static
readonly
BindableProperty
SpeedProperty
public
double
Speed
{
get
;
set
; }
public
class
TextSwitcher
:
Label
,
IViewSwitcher
public
static
readonly
BindableProperty
TransitionDurationProperty
public
static
readonly
BindableProperty
TransitionTypeProperty
public
uint
TransitionDuration
{
get
;
set
; }
public
TransitionType
TransitionType
{
get
;
set
; }
public
TextSwitcher
()
public
enum
TransitionType
Fade
=
0
MoveInFromLeft
=
1