Flutter iOS Embedder
FlutterView.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_FLUTTERVIEW_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_FLUTTERVIEW_H_
7 
8 #import <Metal/Metal.h>
9 #import <UIKit/UIKit.h>
10 
11 #include "flutter/shell/common/rasterizer.h"
13 
14 @protocol FlutterViewEngineDelegate <NSObject>
15 
17 
18 - (flutter::Rasterizer::Screenshot)takeScreenshot:(flutter::Rasterizer::ScreenshotType)type
19  asBase64Encoded:(BOOL)base64Encode;
20 
21 /**
22  * A callback that is called when iOS queries accessibility information of the Flutter view.
23  *
24  * This is useful to predict the current iOS accessibility status. For example, there is
25  * no API to listen whether voice control is turned on or off. The Flutter engine uses
26  * this callback to enable semantics in order to catch the case that voice control is
27  * on.
28  */
30 @end
31 
32 @interface FlutterView : UIView
33 
34 - (instancetype)init NS_UNAVAILABLE;
35 + (instancetype)new NS_UNAVAILABLE;
36 - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
37 - (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
38 
39 - (instancetype)initWithDelegate:(id<FlutterViewEngineDelegate>)delegate
40  opaque:(BOOL)opaque
41  enableWideGamut:(BOOL)isWideGamutEnabled NS_DESIGNATED_INITIALIZER;
42 
43 - (UIScreen*)screen;
44 - (MTLPixelFormat)pixelFormat;
45 
46 @end
47 
48 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_FLUTTERVIEW_H_
-[FlutterViewEngineDelegate-p flutterViewAccessibilityDidCall]
void flutterViewAccessibilityDidCall()
FlutterViewEngineDelegate-p
Definition: FlutterView.h:14
initWithFrame
instancetype initWithFrame
Definition: FlutterTextInputPlugin.h:172
-[FlutterView pixelFormat]
MTLPixelFormat pixelFormat()
Definition: FlutterView.mm:42
flutter
Definition: accessibility_bridge.h:26
FlutterPlatformViews_Internal.h
initWithCoder
instancetype initWithCoder
Definition: FlutterTextInputPlugin.h:171
FlutterPlatformViewsController
Definition: FlutterPlatformViewsController.h:30
NS_UNAVAILABLE
instancetype init NS_UNAVAILABLE
Definition: FlutterTextInputPlugin.h:169
FlutterView
Definition: FlutterView.h:32
-[FlutterView screen]
UIScreen * screen()
Definition: FlutterView.mm:35
FlutterViewEngineDelegate-p::platformViewsController
FlutterPlatformViewsController * platformViewsController
Definition: FlutterView.h:16