运行flutter run时报错 提示如下: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app. Error launching application on iPhone 11 Pro Max. 错误的原因是在xcode中修改了bundle Name字段的名字 默认是Runner,将bundle Name修改为Runner即可…
报错信息Could not find the built application bundle at build/ios/iphoneos/Runner.app. Error launching application on xxx的 iPhone. 错误的原因是在xcode中修改了bundle Name字段的名字 默认是Runner,将bundle Name修改为Runner即可 修改plist文件 <key>CFBundleDisplayName</key> <strin…
iOS 真机测试错误"The application bundle does not contain a valid identifier" 真机测试的时候报错:"The application bundle does not contain a valid identifier".在这里找到解决方法:http://stackoverflow.com/questions/37750186/the-application-bundle-does-not-contain…
http://code4app.com/requirement/54128041933bf0e0308b5204 Invalid code signing entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Speicifically value 'K8TE8KDZ95.cn.blueu.* for key 'appl…
Flutter json 2 model with Built Value Flutter中json转换model, 除了手动转之外, 就是利用第三方库做一些代码生成. 流行的库有: json_serializable和built_value 本文介绍built_value的实际使用及问题处理. Flutter中的json转model方法 Flutter中json到model类型的转换可以有多种方式: 利用官方自带的dart convert中的json解码. 该方法只能将json转换为List或…
In this lesson we’ll learn how to import widgets we’ve created in other files & use them in our project. We'll also look at how to create dynamic properties in our widgets in order to make them reusable across our application. We have the CLI generat…
1.创建 Flutter 工程 flutter create <output directory> D:\notebook\flutter\projects\ui_tutorial\layout>flutter create layout_app Creating project layout_app... layout_app\.gitignore (created) layout_app\.idea\libraries\Dart_SDK.xml (created) layout_ap…
概要 在前一篇文章中我们提到,iOS跳转到Flutter工程指定页面时(多个),Flutter只有单例,设置setInitialRouter 无效,如下 let flutterViewController = FlutterViewController(engine: flutterEngine, nibName: nil, bundle: nil)! flutterViewController.setInitialRoute("test1") 基于不是很甘心,一直想实现完美的解决方案…
概述 需要实现native跳转到flutter 指定的路由页面. iOS 工程中发现 FlutterViewController  setInitialRouter 无效,在我的需求里面是: 在iOS现有工程集成flutter项目,然后可以跳转到任意的 业务页面. 在iOS 之中实例化页面有两种方式,如下: 1. 通过全局统一的方式进行实例子化:(无效) swift 代码: @objc func handleButtonAction() { let flutterEngine = (UIAppl…
1. Spring STS 下载地址  (spring 最近改了站点 暂时不是太熟悉)     http://spring.io/tools/sts/all 2. 下载 Virgo 插件    http://download.eclipse.org/virgo/milestone/tooling 3. Eclipse 下载官方的 virgo + jetty 开发包 http://www.eclipse.org/virgo/download/ 4. 配置Virgo server    Eclips…