问题标签 [flutter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
flutter - 动画小部件只动画一次
我有一个具有动画 AnimatedText 的小部件,在第一个动画之后,它似乎没有用 setState 重建。
AnimatedTest 类:
标题小部件每次都会重建,但带有 AnimatedText 的部分不会。有关如何解决此问题的任何想法都会有所帮助
java - flutter intellij 插件:java 语言支持?
在我的设置中,Intellij Flutter 插件不支持 Java 代码。它将 Java 类视为文本文件。
有什么方法可以让 Intellij 支持我使用 Android 特定的 Java 代码?(类型检查、完成建议、导入、重构......)
这是我的颤振医生输出:
flutter - 如何为在 Flutter 中创建的 iOS 应用选择开发团队
我正在尝试使用 Google 的 Flutter 将 iOS 应用程序部署到设备,但我在命令行上收到此错误:
我在哪里以及如何做到这一点?项目中没有“ios/Runner.xcworkspace”。我知道安装的证书和配置文件可以在我的 Mac 上运行,因为我使用 Appcelerator 在我的 iOS 设备上创建并安装了一个应用程序,它找到了我需要的一切,并在设备上完美运行。
flutter - 如何使图像的 1/3 占据全屏
我有一张想要剪切并在多个屏幕上显示的图像。我希望图像的三分之一占据整个屏幕。
到目前为止,我可以让 1/3 的图像占据 1/3 的屏幕:
}
但我正在画一个关于如何让 1/3 占据整个屏幕的银行。
dart - GridView onTap is only called during creation
I made a GridView with children that each has a GestureDetector
and a onTap
method set. But the onTap event gets called only when the view is created and not when the item has been tapped. What am I doing wrong here?
flutter - How can I configure auto-capitalization behavior in Flutter's text entry fields?
I'm experimenting with Flutter development on Windows. I have a simple test app with an InputField. I would like the first keyboard entry to be a capital letter but can't see a way of achieving that (e.g. launching the keyboard with shift pressed) that at the moment. Any ideas?
Code (a bit simplified) is:
dart - “缺少焦点范围。” 使用输入文本
我尝试使用 Flutter 构建一个表单,我有自己的 StatefulWidget,它返回一个带有 2 个输入的表单(我也尝试使用 TextField)和一个 DropdownButton。
当我执行第二个输入时显示此错误:“缺少焦点范围。”
编码:
flutter - 当用户开始输入时,如何使输入的提示文本消失?
我不确定这是一个错误还是我无法理解它是如何工作的。
我正在使用Input小部件来收集用户输入,并且我已将提示文本字段设置为显示“在此处键入内容”,因此用户知道该做什么。这有效,hintText 在我的输入中以灰色显示。但是当用户点击输入并开始输入时,他们输入的文本会以黑色显示在灰色提示文本的顶部。我希望hintText 消失。这是我应该手动控制的东西,也许来自 onChanged?还有另一种方法可以做到这一点吗?或者这是我应该在 GitHub 上提交的错误?
unit-testing - 有没有办法在 Flutter 单元测试中测试 AppLifecycleState 的变化?
当应用程序移动到后台(AppLifecycleState.paused)时,我的应用程序将用户首选项写入本地文件,我想为此行为编写一个测试。
有没有办法在单元测试中模仿这一点?或者这是否需要作为集成测试来完成?