iOS工程集成Flutter Module及混合开发

Flutter混编方案

  • Flutter 工程作为原生工程共用的子模块,维持原有的原生工程管理方式不变。这种模式,就是三端分离模式。
  • 除了实现轻量级接入,还可以快速实现 Flutter 功能的“热插拔”,降低原生工程的改造成本。而 Flutter 工程独自管理,无需打开原生工程,可直接进行 Dart 代码和原生代码的开发调试。
  • 三端工程分离模式的关键是抽离 Flutter 工程,将不同平台的构建产物依照标准组件化的形式进行管理,即 Android 使用 aar、iOS 使用 pod。换句话说,将 Flutter 模块打包成 aar 和 pod,这样原生工程就可以像引用其他第三方原生组件库那样快速接入 Flutter 了。
    Flutter混编工程管理方式

平台通道架构设计

消息使用platform channels(平台通道)在客户端(UI)和宿主(平台)之间传递;

消息和响应以异步的形式进行传递,以确保用户界面能够保持响应;
平台通道架构图

调用过程大致如下:

1.客户端(Flutter端)发送与方法调用相对应的消息;
2.平台端(iOS、Android端)接收方法,并返回结果;

  • iOS端通过FlutterMethodChannel做出响应;
  • Android端通过MethodChannel做出响应;

集成Flutter

现有的Flutter是一个Application项目,现在想把它嵌入原生应用中。首先需要将现有Flutter工程转成Module工程,在flutter 工程中的pubspec.yaml 文件中flutter节点下添加如下配置,然后pug get跑一下

module:
    androidX: true
    androidPackage: com.ganyuan.flutter_module
    iosBundleIdentifier: com.ganyuan.flutterModule

pub get 一下就会生成:.android.ios 文件夹,这两个文件是flutter applicaiton没有的,在 mac上是两个 隐藏文件夹,window 是可见的

iOS中集成Flutter module

这里采用官方推荐的方法,使用 CocoaPods 依赖管理器安装 Flutter SDK 使用,每次构建应用的时候都会从源代码中编译 flutter_module。
首先在本地安装Flutter的SDK及环境配置,FlutterSDK安装教程
安装完成后,将我们的iOS工程和Flutter工程(默认已创建好)放到同一目录下,如下图所示

如果你的应用下(iOS_demo)还没有 Podfile,请运行 pod init 来创建一个。

  1. Podfile 中添加下面代码:
    flutter_application_path = '../flutter_module'
    load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
    
  2. 每个需要集成 Flutter 的 Podfile target,执行 install_all_flutter_pods(flutter_application_path)
    target 'iOS_demo' do
      install_all_flutter_pods(flutter_application_path)
    end
    
  3. Podfilepost_install 部分,调用 flutter_post_install(installer)
    post_install do |installer|
      flutter_post_install(installer) if defined?(flutter_post_install)
    end
    
  1. 运行 pod install
    提示
    当你在 flutter_module/pubspec.yaml 改变了 Flutter plugin 依赖,需要在 Flutter module 目录运行 flutter pub get,来更新会被podhelper.rb 脚本用到的 plugin 列表,然后再次在你的应用目录 some/path/MyApp 运行 pod install.

podhelper.rb 脚本会把你的 plugins, Flutter.framework,和 App.framework 集成到你的项目中。
你应用的 Debug 和 Release 编译配置,将会集成相对应的 Debug 或 Release 的 编译产物。可以增加一个 Profile 编译配置用于在 profile 模式下测试应用。
小提示
Flutter.framework 是 Flutter engine 的框架, App.framework 是你的 Dart 代码的编译产物。

5.本地隐私权限,如果你的Flutter应用需要调用诸如蓝牙、网络等能力,需要在iOS原生项目中配置用户隐私使用权限,如下图:
添加蓝牙使用权限

6.在原生项目中引用Flutter,确保项目能编译成功:
为了在既有的iOS应用中展示Flutter页面,需要启动 Flutter Engine和 FlutterViewController。
通常建议为我们的应用预热一个长时间存活的FlutterEngine,我们将在应用启动的 app delegate 中创建一个 FlutterEngine,并作为属性暴露给外界。
AppDelegate.h代码:

@import UIKit;
@import Flutter;

@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (nonatomic,strong) FlutterEngine *flutterEngine;

@end

AppDelegate.m代码:

#import "AppDelegate.h"
#import <FlutterPluginRegistrant/GeneratedPluginRegistrant.h>

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey, id> *)launchOptions {
    self.flutterEngine = [[FlutterEngine alloc] initWithName:@"my flutter engine"];
    [self.flutterEngine run];
    // Connects plugins with iOS platform code to this app.
    [GeneratedPluginRegistrant registerWithRegistry:self.flutterEngine];

    return YES;
}
@end

创建一个FlutterViewController用于展示Flutter的内容

调用FlutterViewController

    FlutterEngine *flutterEngine = ((AppDelegate *)UIApplication.sharedApplication.delegate).flutterEngine;
    myFlutterViewController *flutterViewController = [[myFlutterViewController alloc]initWithEngine:flutterEngine nibName:nil bundle:nil];

SceneDelegate.m代码:

#import "SceneDelegate.h"
#import "myFlutterViewController.h"
#import "AppDelegate.h"

@interface SceneDelegate ()

@end

@implementation SceneDelegate


- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
    UIWindowScene *windowScene = (UIWindowScene *)scene;
      self.window = [[UIWindow alloc] initWithWindowScene:windowScene];
      self.window.frame = windowScene.coordinateSpace.bounds;
      
      UITabBarController *tabBarController = [[UITabBarController alloc] init];
      
    FlutterEngine *flutterEngine = ((AppDelegate *)UIApplication.sharedApplication.delegate).flutterEngine;
    myFlutterViewController *flutterViewController = [[myFlutterViewController alloc]initWithEngine:flutterEngine nibName:nil bundle:nil];
    flutterViewController.view.backgroundColor = [UIColor whiteColor];
    flutterViewController.tabBarItem.title = @"Tab1";
    flutterViewController.tabBarItem.image = [UIImage imageNamed:@"icon.bundle/home"];
    flutterViewController.tabBarItem.selectedImage = [UIImage imageNamed:@"icon.bundle/home_selected"];
      
      UIViewController *controller2 = [[UIViewController alloc] init];
      controller2.view.backgroundColor = [UIColor yellowColor];
      controller2.tabBarItem.title = @"Tab2";
      controller2.tabBarItem.image = [UIImage imageNamed:@"icon.bundle/video"];
      controller2.tabBarItem.selectedImage = [UIImage imageNamed:@"icon.bundle/video_selected"];
      
      UIViewController *controller3 = [[UIViewController alloc] init];
      controller3.view.backgroundColor = [UIColor blueColor];
      controller3.tabBarItem.title = @"Tab3";
      controller3.tabBarItem.image = [UIImage imageNamed:@"icon.bundle/like"];
      controller3.tabBarItem.selectedImage = [UIImage imageNamed:@"icon.bundle/like_selected"];
      
      UIViewController *controller4 = [[UIViewController alloc] init];
      controller4.view.backgroundColor = [UIColor greenColor];
      controller4.tabBarItem.title = @"Tab4";
      controller4.tabBarItem.image = [UIImage imageNamed:@"icon.bundle/page"];
      controller4.tabBarItem.selectedImage = [UIImage imageNamed:@"icon.bundle/page_selected"];
      
      [tabBarController setViewControllers: @[flutterViewController, controller2, controller3, controller4]];
      
      tabBarController.tabBar.backgroundColor = [UIColor whiteColor];
          
      self.window.rootViewController = tabBarController;
      [self.window makeKeyAndVisible];
}

@end

在 Xcode 中打开 iOS_demo.xcworkspace ,你现在可以使用 ⌘B 编译项目了。
demo运行效果:

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容