Flutter是一款开源的移动应用SDK,可帮助开发人员和设计人员构建适用于iOS和Android的现代移动应用。
我有一个从BottomNavigationBar 调用的bottomSheet 模式。即使模式打开,我仍然希望能够访问底部导航栏。我尝试使用 useRootNavigator: tr...
在我使用 SQLite 数据库的 Flutter 应用程序中,我创建了一个表: void _createDb(数据库 db, int newVersion) 异步 { 等待db.execute('''创建表卡(id_card INTEGER PRIMARY KEY, ...
我一直在问自己,我的应用程序应该坚持哪种导航风格: Navigator、命名路线、go_router 是我的选择。我的应用程序并不复杂,我不需要深层链接。但我...
“请确保 android 清单是有效的 XML 文档,然后重试”Flutter 'androidManifest.xml' 错误
我正在使用 VS Code 进行 Flutter 开发。 这是我的 AndroidManifest.xml 文件: 我正在使用 VS Code 进行 Flutter 开发。 这是我的AndroidManifest.xml文件: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.object_detection"> <!-- io.flutter.app.FlutterApplication is an android.app.Application that calls FlutterMain.startInitialization(this); in its onCreate method. In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> <application android:name="io.flutter.app.FlutterApplication" android:label="Object Detector" android:icon="@mipmap/launcher_icon"> <meta-data android:name="com.google.android.gms.ads.APPLICATIN_ID" android:value <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible to the user while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. --> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> <!-- Displays an Android View that continues showing the launch screen Drawable until Flutter paints its first frame, then this splash screen fades out. A splash screen is useful to avoid any visual gap between the end of Android's launch screen and the painting of Flutter's first frame. --> <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <!-- Don't delete the meta-data below. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> <meta-data android:name="flutterEmbedding" android:value="2" /> </application> </manifest> 我收到此错误: 请确保 Android 清单是有效的 XML 文档,然后重试 我想我有双引号或其他问题。 您的 android:value 不在参数中。这是更正的清单: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.object_detection"> <!-- io.flutter.app.FlutterApplication is an android.app.Application that calls FlutterMain.startInitialization(this); in its onCreate method. In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> <application android:name="io.flutter.app.FlutterApplication" android:label="Object Detector" android:icon="@mipmap/launcher_icon"> <meta-data android:name="com.google.android.gms.ads.APPLICATIN_ID" <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible to the user while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. --> <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> <!-- Displays an Android View that continues showing the launch screen Drawable until Flutter paints its first frame, then this splash screen fades out. A splash screen is useful to avoid any visual gap between the end of Android's launch screen and the painting of Flutter's first frame. --> <meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <!-- Don't delete the meta-data below. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> <meta-data android:name="flutterEmbedding" android:value="2" /> </application> </manifest>
在 flutter 中,我增加了应用栏中后退箭头的大小。但是当我将鼠标移到其顶部时,鼠标悬停的背景颜色已移动到下面的图像。如何更改和移动背景...
Flutter- dart http 库 ClientException
我正在使用HTTP dart包在flutter中执行这样的post请求,但有时当网络失败时,IOClient类会抛出ClientException,但我在catch块中没有得到任何东西...
Flutter - 任务“:connectivity:compileDebugJavaWithJavac”执行失败
我正在使用 VSCode 开发一个 flutter 应用程序,但最近当我尝试命令 flutter run 时,出现此错误: 任务“:connectivity:compileDebugJavaWithJavac”执行失败 应用程序/
我正在尝试开发我的 Flutter 应用程序,并且我已迁移到 Flutter 插件的声明式应用。然而,这现在又产生了另一个问题,我不知道如何解决。 正在启动 lib\m...
无法在Flutter中使用Provider动态渲染widget?
我正在尝试根据 TextField 小部件的空/非空状态动态显示小部件。下面是我写的代码。但即使...
CupertinoSLiverRefresh 不适用于 SuperScaffold
正如我在标题中提到的,我尝试了很多方法来使用 CupertinoSliverRefreshControl 与超级支架一起工作,但从未成功。 主体:自定义滚动视图( 条子...
Flutter错误ConcurrentModificationError(迭代期间并发修改:'_GrowableList'的Instance(length:0)。)
我有这段代码抛出 ConcurrentModificationError (迭代期间并发修改: '_GrowableList' 的 Instance(length:0).) 错误,但我正在修改地图的副本而不是地图...
如何在 Codemagic CI/CD for Flutter 中为 shorebird 设置 export_options.plist?
我在 Flutter 项目中使用 Codemagic 进行 CI/CD,需要为 iOS 构建配置 shorebird。我遇到了一个问题,export_options.plist 文件似乎找不到或不正确......
由于项目依赖flutter_lints any不存在(授权失败),版本解决失败
从昨天开始,每次运行 flutter pub get 都会报这样的错误: **因为项目依赖的 flutter_lints 不存在(授权失败),版本解析失败。 不足
我读过很多关于此的文章,但没有找到任何好的答案。有人可以给我参考 github 上的任何项目或任何可以清楚解释它的文章吗? 我试图找到一个...
我一直在研究 Dart,我想知道它是否有像 Kotlin 那样的范围运算符 https://kotlinlang.org/docs/reference/ranges.html 或类似的东西。
如何在flutter中将appBarTheme背景色应用到BottomAppBar?
我想使用 appBarTheme 中的背景颜色并将其应用到 BottomAppBar 的颜色属性。 但 Theme.of(context).appBarTheme.backgroundColor 返回 null 并且不起作用 导入'
我想知道是否有办法在 dart 中显示实时时钟? 日期和时间(例如 11/14/2018 19:34)并且时间将继续运行。 时间可以从设备本身获取。
异常:获取玩家比赛历史记录时出错:TypeError:“players”:类型“String”不是类型“int”的子类型(不获取任何int)
我正在尝试运行我的应用程序,但我不断收到此错误: 错误:TypeError:“players”:类型“String”不是类型“int”的子类型 获取比赛历史记录时出错:异常:获取时出错
在 Flutter 中设置相同值时,ValueListenableBuilder 不触发
在以下 Flutter 代码中,使用 ValueListenableBuilder 在 ValueNotifier 更改时显示对话框。但是,当再次设置相同的值时,不会触发该对话框。 ValueNotifier 是
在 Flutter 中使用 Retrofit 和 Dio 上传图片时出现 500 内部服务器错误
我在 Flutter 应用程序中尝试使用 Dio 和 Retrofit 上传图像时遇到问题。奇怪的是,API 端点在 Postman 中工作正常,但是当我尝试上传 i...