
[英]Flutter - Xcode can't see app packages while building for Simulator
每当我尝试运行我的应用程序 Xcode 时,都会给我这个: 无论我做了多少flutter clean和arch -x86_64 pod install 。 它一直这样做。 我正在使用 mac 硅机。 这是一个我之前没有运行过的项目。 所以它是新的。 我正在使用 Flutter 3.3.10。 而且我 ...
[英]Flutter - Xcode can't see app packages while building for Simulator
每当我尝试运行我的应用程序 Xcode 时,都会给我这个: 无论我做了多少flutter clean和arch -x86_64 pod install 。 它一直这样做。 我正在使用 mac 硅机。 这是一个我之前没有运行过的项目。 所以它是新的。 我正在使用 Flutter 3.3.10。 而且我 ...
[英]How to detect if iOS or Android device has HomeBar at the bottom of device in flutter
带有 HomeBar 的设备在页面底部需要一些间距。 因此,我们需要检查设备是否有主页栏,以便我们可以相应地提供填充。 如何知道设备在 flutter 中是否有 HomeBar? ...
[英]Flutter IOS Universal Link Opens App, But Does Not Navigate To Correct Page
我已经在我的 flutter 项目上为 IOS 设置了通用链接。 正如标题所暗示的那样,当我单击与我的网站相关的链接时,我的应用程序确实会打开,但它不会导航到正确的页面。 它只是打开应用程序。 我没有使用uni_links package,而是使用了指南的组合(包括官方文档): https://d ...
[英]How to wake up an app at a specific time in IOS
赏金将在 2 天后到期。 此问题的答案有资格获得+50声望赏金。 Sajjad想让更多人关注这个问题。 我需要在 Flutter 的特定时间(例如 2 小时后)运行任务,就像闹钟一样,我在 flutter 中搜索过,我知道这不容易实现。 我已经测试了工作管理器,但它没有正常工作。 我用 Plat ...
[英]No podspec found for `flutter_user_agentx` in `.symlinks/plugins/flutter_user_agentx/ios`, while running application on ios. Android is working
我正在尝试在 ios 中运行我的 flutter 应用程序,而 pod 安装时出现错误([!] No podspec found for flutter_user_agentx in .symlinks/plugins/flutter_user_agentx/ios )。 我正在使用名为“flutt ...
[英]Flutter SSO (Single Sign On) through SAML
我想在 flutter 应用程序中通过SAML添加身份验证。但我没有找到任何有用的文档或 package 与 flutter 集成。 所以任何建议都会有很大帮助。 ...
[英]pod lock file not generating all the dependencies are downloading in flutter
pod 安装时出现此错误 /usr/local/lib/ruby/gems/3.2.0/gems/cocoapods-1.11.3/lib/cocoapods/target/build_settings.rb:446:in block (2 levels) in merged_xcconfigs ...
[英]Flutter iOS build warnings
当我尝试存档我的 flutter 产品以供发布时,我收到了很多警告,如下所示。 最低部署 iOS 版本:12 Xcode 版本:14.2 我的 POD 安装文件如下: ...
[英]Flutter does not build the project on real iOS device: PhaseScriptExecution
当我想在真实的 iOS 设备上运行我的 flutter 应用程序时,我得到了这个错误。 我知道,2 周前它运行良好,但在这 2 周内我开发了很多功能,最后是未来的权限处理程序,现在我无法在我的真实设备上运行该项目。 它在 iOS 模拟器上运行良好。 所以,让我告诉你我尝试了什么: 此外,在 Xco ...
[英]Flutter ipad apps
在 Ios 手机上运行良好的 Flutter 应用程序是否自动在 iPad 上运行良好? 我不关心 styles 和布局(已处理),但更关心操作系统细节。 ...
[英]Flutter iOS - Not asking for Camera permission
在这里实现了相机 package 的示例: https://pub.dev/packages/camera/example 在物理设备(运行 iOS 16)上进行测试时,应用程序构建并运行良好,但手机不要求任何访问相机或麦克风的权限。 以下代码已添加到ios/Runner/Info.plist ...
[英]Build error after adding image_picker 0.8.6 dependency in flutter ios project
将 image_picker 0.8.6 添加到我的 pubspec.yaml 文件后,我在终端中收到此错误,然后它无法运行,这里是错误的图像和我的 info.plist 文件Build error 1 Build error 2 [info.plist file 1 ]信息.plist 2 我多次 ...
[英]Xcode commands are taking a long time within Flutter projects
一些上下文我正在使用 Flutter,但在对 iOS Podfile 、 .plist文件和Runner.xcworkspace进行了一些更改后,“停止”工作。 我遇到的问题是,与 Xcode 相关的所有内容都需要很长时间才能在我所有的 Flutter 项目中运行。 为了提供一些背景信息,我正在构建 ...
[英]Flutter NO_RENEGOTIATION(ssl_lib.cc:1725) error 268435638
我不确定为什么我请求的这个 API 仅针对 dart 抛出此错误。出于某种原因,当我尝试发出 POST 请求时 dart 抛出此错误: 未处理的异常:NO_RENEGOTIATION(ssl_lib.cc:1725) 错误 268435638 #0 IOClient.send (package:h ...
[英]Flutter auto line break in Text Widget
我对 Flutter 很陌生。 我目前正在编写一个简单的备忘录应用程序,其中包含如下所示的标题列表: 那些文本小部件应该是分开的,但我不知道如何打破文本行。 具体来说,下面的代码应该使用哪个小部件?import 'package:flutter/material.dart'; void main( ...
[英]Flutter: how to fix callkeep is not showing incoming call screen when the app is in background in ios?
我刚刚在 flutter 为 android 和 ios 构建了一个视频通话应用程序, 我使用callkeep来显示来电通知和 fcm 推送通知。 在 ios 中,当应用程序处于前台时它可以工作。 但当应用程序处于后台时它不会显示。 在 android 中,它可以在前台和后台工作。 如何解决这个问 ...
[英]Flutter - Apple Watch - unable to resolve product type 'com.apple.product-type.watchkit2-extension' for platform 'iphoneos'
我尝试创建一个 Flutter 应用程序,支持 android 和 Apple Watch。 对于 android,到目前为止我没有遇到任何问题。 但我正在为 Apple Watch 苦苦挣扎。 我遵循了 flutter 的官方说明: https://docs.flutter.dev/develo ...
[英]Apple Developer Program Enrollment !!! Your enrollment could not be completed
我正在尝试加入 Apple Developer Program Enrollment 并收到此消息 我打电话给苹果支持,他告诉我他不知道是什么问题,因为它来自系统并且系统没有给他信息! 我应该怎么办?? 如果苹果支持不知道是什么问题。 我应该问我妈妈吗!!!! ...
[英]Flutter - Error (Xcode): Signing for "DKImagePickerController-DKImagePickerController" requires a development team
将我的xcode更新为14.0 。 升级 xcode 我的Flutter项目后抛出以下错误。 Target > Signing & Capabilities > Team 也已经被选中 ...
[英]How to stop the barcode scanner camera and pass the barcode value to TextFormField in Flutter?
我正在使用qr_code_scanner: ^1.0.1 for Flutter 中的 IOS 应用程序,其中应用程序中有一个包含产品信息的表单:条形码编号、名称、品牌等......我所做的是当用户点击TextFormField 上的条形码图标移动到扫描仪以扫描条形码。 但是我被困在下一步,我想停 ...