书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 578 个相关结果.
  • 文本框的创建和设定

    文本框 表单文本框 文本框作为一个接收用户输入的组件,被广泛应用于表单构建、即时通讯、搜索等场景中。 Flutter 提供了两个开箱即用的文本框组件:TextField 和 TextFormField 。 文本框 TextField 是最常用的文本输入组件。 TextField 组件的默认样式是带有下划线的装饰样式。如果需要自定义...
  • 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 develop Dar...
  • Adding Firebase

    1061 2019-12-15 《Flutter by Example》
    Adding Firebase Integrating Firebase Adding Firebase So far, this is what we have. It's just the starter app, but it's updating via Redux. Which is cool. .com/ericwindmill/im...
  • 添加点按涟漪效果 (Material Design)

    步骤 完整例子 当我们在开发遵循 Material Design 规范应用的时候,我们可能会需要为某个 Widgets 的点击加入涟漪效果。 Flutter 提供了 InkWell Widget 来实现这个功能。 步骤 创建一个想要点击的 Widget 用 InkWell Widget 包裹它,并设置回调函数, 就可以显示涟漪动画了...
  • 多媒体

    多媒体 图像 视频 多媒体 页面中的多媒体用得比较多的图像与视频,Kraken 分别使用 <img> 与 <video> 标签来支持,以下介绍具体的用法。 图像 Kraken 支持所有 Flutter 支持的图像格式,包含 JPEG, PNG, GIF, Animated GIF, WebP, Animated WebP, BMP, W...
  • REST Client

    600 2019-12-14 《Angel v2.x Document》
    angel_client Usage Authentication Live Updates angel_client Client library for the Angel framework.This library provides virtually the same API as an Angel server.The cl...
  • Handling Taps

    906 2019-06-08 《Flutter Cookbook》
    Directions Notes Complete example We not only want to display information to our users, we want our users tointeract with our apps! So how do we respond to fundamental actions ...
  • View

    View View View 是一个输出 Widget 的上下文无关的函数。它接收下面的参数 T state Dispatch ViewService 它主要包含三方面的信息 视图完全由数据驱动。 视图产生的事件/回调,通过 Dispatch 发出“意图”,但绝不做具体的实现。 使用依赖的组件/适配器,通过在组件上显示配置,再通过 ViewSe...
  • 变换Transform

    1793 2018-12-05 《Flutter 实战》
    Transform变换 平移 旋转 缩放 注意 RotatedBox Transform变换 Transform可以在其子Widget绘制时对其应用一个矩阵变换(transformation),Matrix4是一个4D矩阵,通过它我们可以实现各种矩阵操作。下面是一个例子: Container ( color : Colors ...