Flutter iOS Embedder
ChildClippingView Class Reference

#import <FlutterPlatformViews_Internal.h>

Inheritance diagram for ChildClippingView:

Instance Methods

(void) - applyBlurBackdropFilters:
 
(NSMutableArray *) - backdropFilterSubviews
 

Detailed Description

Definition at line 152 of file FlutterPlatformViews.mm.

Method Documentation

◆ applyBlurBackdropFilters:

- (void) applyBlurBackdropFilters: (NSArray<PlatformViewFilter*>*)  filters

Definition at line 166 of file FlutterPlatformViews.mm.

166  :(NSArray<PlatformViewFilter*>*)filters {
167  FML_DCHECK(self.filters.count == self.backdropFilterSubviews.count);
168  if (self.filters.count == 0 && filters.count == 0) {
169  return;
170  }
171  self.filters = filters;
172  NSUInteger index = 0;
173  for (index = 0; index < self.filters.count; index++) {
174  UIVisualEffectView* backdropFilterView;
175  PlatformViewFilter* filter = self.filters[index];
176  if (self.backdropFilterSubviews.count <= index) {
177  backdropFilterView = filter.backdropFilterView;
178  [self addSubview:backdropFilterView];
179  [self.backdropFilterSubviews addObject:backdropFilterView];
180  } else {
181  [filter updateVisualEffectView:self.backdropFilterSubviews[index]];
182  }
183  }
184  for (NSUInteger i = self.backdropFilterSubviews.count; i > index; i--) {
185  [self.backdropFilterSubviews[i - 1] removeFromSuperview];
186  [self.backdropFilterSubviews removeLastObject];
187  }
188 }

References backdropFilterSubviews, and PlatformViewFilter::backdropFilterView.

◆ backdropFilterSubviews

- (NSMutableArray *) backdropFilterSubviews

Definition at line 190 of file FlutterPlatformViews.mm.

190  {
191  if (!_backdropFilterSubviews) {
192  _backdropFilterSubviews = [[NSMutableArray alloc] init];
193  }
194  return _backdropFilterSubviews;
195 }

Referenced by applyBlurBackdropFilters:.


The documentation for this class was generated from the following files:
PlatformViewFilter
Definition: FlutterPlatformViews.mm:60
-[ChildClippingView backdropFilterSubviews]
NSMutableArray * backdropFilterSubviews()
Definition: FlutterPlatformViews.mm:190