AvatarBackgroundImageView.h 423 B

12345678910111213141516171819202122
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. NS_ASSUME_NONNULL_BEGIN
  7. @interface GradientView : UIView
  8. @property (nonatomic, strong, readonly) CAGradientLayer *layer;
  9. @end
  10. @interface AvatarBackgroundImageView : UIImageView
  11. @property (nonatomic, strong) GradientView *gradientView;
  12. @end
  13. NS_ASSUME_NONNULL_END