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

    Assert Assert During development, use an assert statement— assert(condition, optionalMessage) ; —to disrupt normal execution if a booleancondition is false. You can find exampl...
  • Assert

    Assert Assert During development, use an assert statement— assert(condition, optionalMessage) ; —to disrupt normal execution if a booleancondition is false. You can find exampl...
  • 导航到一个新页面和返回

    步骤 1. 创建两个路由 2. 用 Navigator.push() 跳转到第二个路由 3. 用 Navigator.pop() 回退到第一个路由 完整的例子 我们通常会用“屏”来表示应用的不同页面(界面),比如,某个应用有一“屏”展示商品列表,当用户点击某个商品的图片,会跳到新的一“屏”展示商品的详细信息。 术语 : 在 Flutter 中,...
  • 综述

    Dart SDK overview What’s in the Dart SDK Filing bugs and feature requests Dart SDK overview The Dart SDK has the libraries and command-line tools that you need to developDart...
  • Overview

    Dart SDK overview What’s in the Dart SDK Filing bugs and feature requests Dart SDK overview The Dart SDK has the libraries and command-line tools that you need to developDart...
  • Adding Material Touch Ripples

    2098 2019-06-08 《Flutter Cookbook》
    Directions Complete example While designing an app that should follow the Material Design Guidelines, we’llwant to add the ripple animation to Widgets when tapped. Flutter prov...
  • 存储键值对数据

    步骤 1. 添加依赖 2. 保存数据 3. 读取数据 4. 移除数据 支持类型 测试支持 示例 如果你要存储的键值集合相对较少,则可以用 shared_preferences 插件。 通常你需要在两个平台用原生的方式存储数据。幸运的是 shared_preferences 插件可以把 key-value 保存到磁盘中。它通过封装 iO...
  • 动画结构

    1684 2018-12-05 《Flutter 实战》
    动画基本结构 使用AnimatedWidget简化 用AnimatedBuilder重构 动画状态监听 示例 动画基本结构 我们通过实现一个图片逐渐放大的示例来演示一下Flutter中动画的基本结构: class ScaleAnimationRoute extends StatefulWidget { @overr...
  • 开发插件

    开发插件 一个简单的闹钟 API 准备工作 添加 JavaScript 层的实现 Dart 层逻辑的实现 完成插件的注册 开发插件 一个简单的闹钟 API 查看项目源代码:https://github.com/openkraken/kraken_plugin_examples/tree/main/plugins/my_kraken_pl...
  • Functions

    Functions Functions Dart is a true object-oriented language, so even functions are objectsand have a type, Function. This means that functions can be assigned to variables or p...