Skip to content

Commit

Permalink
* fixed issue mmazzarolo#283
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan committed Sep 23, 2019
1 parent da17d01 commit 7863513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CustomDatePickerIOS.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export default class CustomDatePickerIOS extends React.PureComponent {
}
const DEVICE_THEME = Appearance.getColorScheme();
const BORDER_RADIUS = 13;
const BACKGROUND_COLOR = DEVICE_THEME ? 'black' : "white";
const BACKGROUND_COLOR = DEVICE_THEME === 'dark' ? 'black' : "white";
const BORDER_COLOR = "#d5d5d5";
const TITLE_FONT_SIZE = 13;
const TITLE_COLOR = "#8f8f8f";
Expand Down

0 comments on commit 7863513

Please sign in to comment.