Skip to content

Commit

Permalink
Add padding property to readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinBonilla committed Nov 23, 2023
1 parent 00463d4 commit a185e29
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 12 deletions.
8 changes: 4 additions & 4 deletions MaterialDatePickerControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ This property is to set the Supporting LineBreakMode.
<br/>
<br/>





### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
6 changes: 4 additions & 2 deletions MaterialDoublePickerControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,5 +291,7 @@ This property is to set the Supporting LineBreakMode.
<br/>
<br/>



### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
5 changes: 4 additions & 1 deletion MaterialEditorControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,4 +321,7 @@ This property is to set autosize editor.
<br/>
<br/>


### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
5 changes: 5 additions & 0 deletions MaterialEntryControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,9 @@ This property is to set the Supporting LineBreakMode.
- TailTruncation,
- MiddleTruncation
<br/>
<br/>

### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
4 changes: 4 additions & 0 deletions MaterialPickerControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,3 +270,7 @@ This property is to get the selected index
<br/>
<br/>

### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
5 changes: 5 additions & 0 deletions MaterialSearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,9 @@ This property is to set the Supporting LineBreakMode.
- TailTruncation,
- MiddleTruncation
<br/>
<br/>

### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
5 changes: 5 additions & 0 deletions MaterialSelectionControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,3 +253,8 @@ This property is to set the command.
This property is to set the command parameter.
<br/>
<br/>

### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
5 changes: 5 additions & 0 deletions MaterialTimePickerControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,8 @@ This property is to set Time.
This property is to set time Format.
<br/>
<br/>

### Property Padding:
This property is to set the padding of the control. By default uses (16, 8).
<br/>
<br/>
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public MaterialSelection()


public new static readonly BindableProperty AnimatePlaceholderProperty =
BindableProperty.Create(nameof(AnimatePlaceholder), typeof(bool), typeof(BaseMaterialFieldControl), defaultValue: false);
BindableProperty.Create(nameof(AnimatePlaceholder), typeof(bool), typeof(MaterialSelection), defaultValue: false);

public new bool AnimatePlaceholder => false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public string SelectedIcon
}

public static readonly BindableProperty CustomSelectedIconProperty =
BindableProperty.Create(nameof(CustomSelectedIcon), typeof(View), typeof(BaseMaterialFieldControl), defaultValue: null);
BindableProperty.Create(nameof(CustomSelectedIcon), typeof(View), typeof(MaterialSwitch), defaultValue: null);

public View CustomSelectedIcon
{
Expand All @@ -242,7 +242,7 @@ public View CustomSelectedIcon
}

public static readonly BindableProperty UnselectedIconProperty =
BindableProperty.Create(nameof(UnselectedIcon), typeof(string), typeof(BaseMaterialFieldControl), defaultValue: null);
BindableProperty.Create(nameof(UnselectedIcon), typeof(string), typeof(MaterialSwitch), defaultValue: null);

public string UnselectedIcon
{
Expand All @@ -251,7 +251,7 @@ public string UnselectedIcon
}

public static readonly BindableProperty CustomUnselectedIconProperty =
BindableProperty.Create(nameof(CustomUnselectedIcon), typeof(View), typeof(BaseMaterialFieldControl), defaultValue: null);
BindableProperty.Create(nameof(CustomUnselectedIcon), typeof(View), typeof(MaterialSwitch), defaultValue: null);

public View CustomUnselectedIcon
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public MaterialTimePicker()
#region Properties

public new static readonly BindableProperty AnimatePlaceholderProperty =
BindableProperty.Create(nameof(AnimatePlaceholder), typeof(bool), typeof(BaseMaterialFieldControl), defaultValue: false);
BindableProperty.Create(nameof(AnimatePlaceholder), typeof(bool), typeof(MaterialTimePicker), defaultValue: false);

public new bool AnimatePlaceholder => false;

Expand Down

0 comments on commit a185e29

Please sign in to comment.