书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 578 个相关结果.
  • pub 命令

    Pub 工具 管理 Package 的依赖关系 运行命令行应用 部署 Package 和应用 Packages Package 命令行应用 任何包含脚本(即在 bin/ 目录下有任意文件)的 Package,可以在 pubspec 文件中添加上 executables 标签。当一个脚本标识为 executables 时,用户可以直接从命令行使用 ...
  • 开发插件

    开发插件 一个简单的闹钟 API 准备工作 添加 JavaScript 层的实现 Dart 层逻辑的实现 完成插件的注册 开发插件 一个简单的闹钟 API 查看项目源代码:https://github.com/openkraken/samples/tree/main/plugins/my_kraken_plugin 接下来通过一个简单的...
  • Text Field 上的焦点

    一旦 text filed 可见,就将其聚焦 点击按钮时聚焦 text filed 步骤 1. 创建一个 FocusNode 2. 将 FocusNode 传递给 TextField 3. 通过点击按钮聚焦 TextField 一个完整的示例 当一个 text filed 被选中并接受输入时,被称为获得了“焦点”。通常,用户能够通过点击 te...
  • Forms 2: Sliders and Buttons

    1058 2019-12-15 《Flutter by Example》
    Forms 2: Sliders and Buttons 1. Add the Form 2. Wire up the Submit button Forms 2: Sliders and Buttons The time has come to add the most important feature: the ability to rat...
  • Add a Drawer to a screen

    1063 2019-06-08 《Flutter Cookbook》
    Directions 1. Create a Scaffold 2. Add a drawer 3. Populate the drawer with items 4. Close the drawer programmatically Complete example In apps that employ Material Design, ...
  • Lifecycle

    Lifecycle Lifecycle The default all lifecycles are essentially derived from the lifecycle in flutter State. initState didChangeDependencies build didUpdateWidget deactivate di...
  • 进阶

    使用 QuickJS Bytecode 提升加载性能 使用 HTML 格式渲染(SSR) 使用 Flutter Widget 自定义元素 实现一个高性能长列表 使用增强的手势能力 Native 控制页面跳转 JavaScript 与 Native 通信 Kraken 网络请求拦截器 监测 Kraken 是否在屏 Native 与 Kra...
  • 列表滚动

    Directions 1. Create an app with a list of items 2. Instrument the app 3. Write a test that scrolls through the list 4. Run the test Many apps feature lists of content, from ...
  • Step Two: AnimatedWidget

    1258 2019-12-15 《Flutter by Example》
    Step Two: AnimatedWidget 1. SetUp Animation boiler plate in BarLoadingState 2. Add Intervals to the Animation 3: Use Animated Widgets 4: Add the Animated Widget to the _BarLoadi...
  • Isolates

    Isolates Isolates Most computers, even on mobile platforms, have multi-core CPUs.To take advantage of all those cores, developers traditionally useshared-memory threads running...