corin8823 / Popover

Popover is a balloon library like Facebook app. It is written in pure swift.
MIT License
2.09k stars 326 forks source link

Shadow in iOS 13 Dark Mode #132

Open sicaboy opened 4 years ago

sicaboy commented 4 years ago

Because the default background of UIView is black, which makes the shadow invisible.

sicaboy commented 4 years ago

A very quick fix is to create a named color then set option as follows:

let options = [
  .blackOverlayColor(UIColor(named: "the_color_name_with_opacity")),
...