我正在IDE Android Studio上开发Android项目(大小约600Mb)。 现在,我想将Library Flutter添加到我的项目中。但我没有找到任何办法。 请帮我解决这个问题。
答案 0 :(得分:0)
我想您正在尝试向现有项目添加flutter,您可以将if let bVC = self.storyboard.instantiateViewController(withIdentifier: B.controllerIdentifier) as? B {
bVC.delegate = self
self.present(bVC, animated: true, completion: nil)
}
嵌入到现有的android或ios项目中。要在全屏Android和颤振视图之间切换,您可以查看this示例。
要使用flutter获取视图的一部分,您可以查看flutter视图示例here。
希望有所帮助!
答案 1 :(得分:0)
在项目的根目录下,查找pubspec.yaml文件。
在依赖项中,您将添加所需的库
dependencies:
google_maps_flutter: ^ 0.0.3 + 3
url_launcher: ^ 4.0.3
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^ 0.1.2
http: any
请记住,缩进在此文件中非常重要