#import <FlutterPlatformViews_Internal.h>
Definition at line 178 of file FlutterPlatformViews.mm.
◆ applyBlurBackdropFilters:
Definition at line 174 of file FlutterPlatformViews.mm.
192 :(NSArray<PlatformViewFilter*>*)filters {
193 FML_DCHECK(
self.filters.count ==
self.backdropFilterSubviews.count);
194 if (
self.filters.count == 0 && filters.count == 0) {
197 self.filters = filters;
198 NSUInteger index = 0;
199 for (index = 0; index <
self.filters.count; index++) {
200 UIVisualEffectView* backdropFilterView;
203 backdropFilterView = filter.backdropFilterView;
204 [self addSubview:backdropFilterView];
205 [self.backdropFilterSubviews addObject:backdropFilterView];
207 [filter updateVisualEffectView:self.backdropFilterSubviews[index]];
211 [self.backdropFilterSubviews[i - 1] removeFromSuperview];
212 [self.backdropFilterSubviews removeLastObject];
NSMutableArray * backdropFilterSubviews()
◆ backdropFilterSubviews
- (NSMutableArray *) backdropFilterSubviews |
|
|
|
Definition at line 174 of file FlutterPlatformViews.mm.
217 if (!_backdropFilterSubviews) {
218 _backdropFilterSubviews = [[NSMutableArray alloc] init];
220 return _backdropFilterSubviews;
The documentation for this class was generated from the following files: