书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 578 个相关结果.
  • 使用 Themes 统一颜色和字体风格

    定义一个全局 theme 定义一个局部 Theme 定义一个独立的 ThemeData 从父级 Theme 扩展 使用定义好的 Theme 完整的例子 通过定义 Theme ,我们可以更好地复用颜色和字体样式,从而让整个 app 的设计看起来更一致。全局 Theme 会在整个 app 范围内生效,而局部 Theme 只作用于特定元素。其实所谓的...
  • StatelessWidget

    2459 2019-06-09 《Flutter 基础文档》
    StatelessWidget StatelessWidget StatelessWidget 是无状态控件,没有自己的私有数据,是纯展示型的控件,基本定义过程如下: class MyMidget extends StatelessWidget { // 构造函数: // 其中的 this.title 定义的是命...
  • dio 数据请求

    1453 2019-06-09 《Flutter 基础文档》
    dio 数据请求 1. 添加依赖 2. 炒鸡简单的使用方式 get 请求 post 请求 dio 数据请求 注意:Flutter 官方提供了 HttpClient 发起的请求,但 HttpClient 本身功能较弱,很多常用功能都不支持。 所以,官方建议使用 dio 来发起网络请求,它是一个强大易用的 dart http 请求库,支持...
  • 容器类Widgets

    1275 2018-12-05 《Flutter 实战》
    容器类Widget 本章目录 容器类Widget 容器类Widget和布局类Widget都作用于其子Widget,不同的是: 布局类widget一般都需要接收一个widget数组(children),他们直接或间接继承自(或包含)MultiChildRenderObjectWidget ;而容器类Widget一般只需要接受一个子Widget(c...
  • Pub Package Registry

    Pub Package Registry Requirements Configuring the package registry Publish a package Install a package Pub Package Registry Publish Pub packages for your user or organizati...
  • Animate the properties of a Container

    1674 2019-06-08 《Flutter Cookbook》
    Directions 1. Create a StatefulWidget with default properties 2. Build an AnimatedContainer using the properties 3. Start the animation by rebuilding with new properties Comple...
  • 导入与导出

    导出(Export) 导入(Import) 使用方式 相关链接 导出(Export) 即 将Chameleon可重用组件导出 给普通项目使用,或者说 某端普通项目里面使用Chameleon可重用组件。 导入(Import) 即 在Chameleon可重用项目中导入 普通项目产出的组件,或者说 可重用代码Chameleon项目使用某端...
  • Routing 1: Pages on the Fly

    708 2019-12-15 《Flutter by Example》
    Routing 1: Pages on the Fly 1. Create a Dog Detail Page: 2. Add the Routing mechanism: Routing 1: Pages on the Fly There are a couple different ways to add more pages to your...
  • Focus on a Text Field

    5514 2019-06-08 《Flutter Cookbook》
    Focus a text field as soon as it’s visible Focus a text field when a button is tapped Directions 1. Create a FocusNode 2. Pass the FocusNode to a TextField 3. Focus the TextFie...
  • Tutorials

    Tutorials The basics Asynchronous programming: streams Install shared packages Server-side Dart tutorials Get started Write command-line apps Write HTTP clients and servers ...