Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void SetupDefaults(MauiDatePicker nativeView)
_defaultBackground = nativeView.Background;
_defaultTextColors = nativeView.TextColors;


}

internal DatePickerDialog? DatePickerDialog { get { return _dialog; } }
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Editor/EditorHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected override void DisconnectHandler(AppCompatEditText nativeView)

void SetupDefaults(AppCompatEditText nativeView)
{


DefaultTextColors = nativeView.TextColors;
DefaultPlaceholderTextColors = nativeView.HintTextColors;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Entry/EntryHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected override void DisconnectHandler(AppCompatEditText nativeView)

void SetupDefaults(AppCompatEditText nativeView)
{


ClearButtonDrawable = GetClearButtonDrawable();
DefaultTextColors = nativeView.TextColors;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Picker/PickerHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected override void DisconnectHandler(MauiPicker nativeView)

void SetupDefaults(MauiPicker nativeView)
{


DefaultBackground = nativeView.Background;
DefaultTitleColors = nativeView.HintTextColors;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void SetupDefaults(SearchView nativeView)
{
DefaultBackground = nativeView.Background;


}

// This is a Android-specific mapping
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/SearchBar/SearchBarHandler.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void SetupDefaults(UISearchBar nativeView)
_cancelButtonTextColorDefaultDisabled = cancelButton.TitleColor(UIControlState.Disabled);
}


}

public static void MapText(SearchBarHandler handler, ISearchBar searchBar)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void SetupDefaults(MauiTimePicker nativeView)
{
DefaultBackground = nativeView.Background;


}

protected override void DisconnectHandler(MauiTimePicker nativeView)
Expand Down