Skip to content

fix: styles don't work with ios13 #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2019
Merged
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
35 changes: 32 additions & 3 deletions src/datetimepicker.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ export class DateTimePicker extends DateTimePickerBase {
pickerContainerFrameTop += DateTimePicker.PICKER_DEFAULT_TITLE_HEIGHT;
}
const pickerViewHeight = DateTimePicker.PICKER_DEFAULT_MESSAGE_HEIGHT;
const pickerContainerFrame = CGRectMake(0, pickerContainerFrameTop, pickerViewWidth, pickerViewHeight);
const pickerContainer = UIView.alloc().initWithFrame(pickerContainerFrame);
const pickerContainer = UIView.alloc().init();
let spinnersBackgroundColor = new Color("transparent");
let spinnersTextColor = null;
if (style) {
Expand All @@ -94,12 +93,22 @@ export class DateTimePicker extends DateTimePickerBase {
const pickerView = nativePicker;
pickerView.frame = CGRectMake(0, 0, pickerViewWidth, pickerViewHeight);
pickerContainer.addSubview(pickerView);
DateTimePicker._clearVibrancyEffects(alertController.view);

const messageLabel = DateTimePicker._findLabelWithText(alertController.view, DateTimePicker.PICKER_DEFAULT_MESSAGE);
const messageLabelContainer = messageLabel.superview;
const messageLabelContainer = DateTimePicker._getLabelContainer(messageLabel);
messageLabelContainer.clipsToBounds = true;
messageLabelContainer.addSubview(pickerContainer);

pickerContainer.translatesAutoresizingMaskIntoConstraints = false;
pickerContainer.topAnchor.constraintEqualToAnchorConstant(alertController.view.topAnchor, pickerContainerFrameTop).active = true;
pickerContainer.leftAnchor.constraintEqualToAnchor(alertController.view.leftAnchor).active = true;
pickerContainer.rightAnchor.constraintEqualToAnchor(alertController.view.rightAnchor).active = true;
pickerContainer.bottomAnchor.constraintEqualToAnchor(alertController.view.bottomAnchor).active = true;

pickerView.leftAnchor.constraintLessThanOrEqualToAnchorConstant(pickerContainer.leftAnchor, DateTimePicker.PICKER_WIDTH_INSETS).active = true;
pickerView.rightAnchor.constraintLessThanOrEqualToAnchorConstant(pickerContainer.rightAnchor, DateTimePicker.PICKER_WIDTH_INSETS).active = true;

const cancelButtonText = options.cancelButtonText ? options.cancelButtonText : "Cancel";
const okButtonText = options.okButtonText ? options.okButtonText : "OK";
const cancelActionStyle = (style && style.buttonCancelBackgroundColor) ? UIAlertActionStyle.Default : UIAlertActionStyle.Cancel;
Expand Down Expand Up @@ -169,6 +178,7 @@ export class DateTimePicker extends DateTimePickerBase {
}
if (color) {
nativePicker.setValueForKey(color.ios, "textColor");
nativePicker.setValueForKey(false, "highlightsToday");
}
}

Expand Down Expand Up @@ -201,6 +211,25 @@ export class DateTimePicker extends DateTimePickerBase {
}
}

private static _clearVibrancyEffects(uiView: UIView) {
if (uiView instanceof UIVisualEffectView && uiView.effect instanceof UIVibrancyEffect) {
// Since ios13 UIAlertController has some effects which cause
// semi-transparency and interfere with color customizations:
uiView.effect = null;
}
const subViewsCount = uiView.subviews.count;
for (let i = 0; i < subViewsCount; i++) {
DateTimePicker._clearVibrancyEffects(uiView.subviews[i]);
}
}

private static _getLabelContainer(uiView: UIView) {
if (uiView.superview.class() === (UIView.class())) {
return uiView.superview;
}
return DateTimePicker._getLabelContainer(uiView.superview);
}

private static _findLabelWithText(uiView: UIView, text: string) {
if ((uiView instanceof UILabel) && uiView.text === text) {
return uiView;
Expand Down