Flutter iOS Embedder
FlutterViewControllerTest Class Reference
Inheritance diagram for FlutterViewControllerTest:

Instance Methods

(void) - sendMessage:reply:
 

Properties

id mockEngine
 
id mockTextInputPlugin
 
id messageSent
 

Detailed Description

Definition at line 176 of file FlutterViewControllerTest.mm.

Method Documentation

◆ sendMessage:reply:

- (void) sendMessage: (id _Nullable)  message
reply: (FlutterReply _Nullable)  callback 

Definition at line 185 of file FlutterViewControllerTest.mm.

1716  :(id _Nullable)message reply:(FlutterReply _Nullable)callback {
1717  NSMutableDictionary* replyMessage = [@{
1718  @"handled" : @YES,
1719  } mutableCopy];
1720  // Response is async, so we have to post it to the run loop instead of calling
1721  // it directly.
1722  self.messageSent = message;
1723  CFRunLoopPerformBlock(CFRunLoopGetCurrent(), fml::MessageLoopDarwin::kMessageLoopCFRunLoopMode,
1724  ^() {
1725  callback(replyMessage);
1726  });
1727 }
NS_ASSUME_NONNULL_BEGIN typedef void(^ FlutterReply)(id _Nullable reply)

Property Documentation

◆ messageSent

- (id) messageSent
readwritenonatomicstrong

Definition at line 179 of file FlutterViewControllerTest.mm.

◆ mockEngine

- (id) mockEngine
readwritenonatomicstrong

Definition at line 177 of file FlutterViewControllerTest.mm.

◆ mockTextInputPlugin

- (id) mockTextInputPlugin
readwritenonatomicstrong

Definition at line 178 of file FlutterViewControllerTest.mm.


The documentation for this class was generated from the following file: