书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 578 个相关结果.
  • An introduction to integration testing

    1483 2019-06-08 《Flutter Cookbook》
    Directions 1. Create an app to test 2. Add the flutter_driver dependency 3. Create the test files 4. Instrument the app 5. Write the tests 6. Run the tests Unit tests and W...
  • 国际化

    Flutter 应用里的国际化 你将学习到 国际化的 app 示例 配置一个国际化的 app:flutter_localizations package 高级语言环境定义 获取语言环境:Locale 类和 Localizations Widget 加载和获取本地化值 使用内置的 LocalizationsDelegates 为 app 的本地...
  • 核心Widget的使用

    1414 2019-06-09 《Flutter 基础文档》
    核心Widget的使用 核心Widget的使用 ReactNative 中提供的控件是基于原生控件做的进一步封装,供程序员使用,所以控件种类少、可扩展性差、复杂功能需要配合原生代码实现; Flutter 自己实现了一套高可用的控件,并没有基于原生控件进行封装,所以易用性、扩展性、多样性更好。而且 Flutter 拥有自己的渲染引擎,理论上渲染性能比...
  • 文件操作

    1407 2018-12-05 《Flutter 实战》
    文件操作 APP目录 示例 文件操作 Dart的IO库包含了文件读写的相关类,它属于Dart语法标准的一部分,所以通过Dart IO库,无论是Dart Vm下的脚本还是Flutter,都是通过Dart IO库来操作文件的,不过和Dart VM相比,Flutter有一个重要差异是文件系统路径不同,这是因为Dart VM是运行在PC或服务器操作系统下...
  • Step One: Tweening

    1350 2019-12-15 《Flutter by Example》
    Step One: Tweening Step 1: Build Boiler Plate Step 2: Add Controller and Tween 2.5 Detour: Color Tween Example Step One: Tweening In this nugget, you're going to build a sim...
  • Display images from the internet

    2054 2019-06-08 《Flutter Cookbook》
    Bonus: Animated Gifs Placeholders and Caching Complete example Displaying images is fundamental for most mobile apps. Flutter provides theImage Widget todisplay different typ...
  • pub

    The pub tool Managing package dependencies Running command-line apps Deploying packages and apps Packages Command-line apps Global options The pub tool The pub tool has ...
  • C interop

    C interop using dart:ffi Examples Walkthrough of hello_world Files Building and running Using dart:ffi Bundling and loading C libraries C interop using dart:ffi Dart mobi...
  • Redux App: Getting To Start

    1137 2019-12-15 《Flutter by Example》
    Redux App: Getting To Start 1. Bare Minimum Flutter App 2. MaterialApp and Scaffold widgets Redux App: Getting To Start Before we begin building, let's update your counter ap...
  • Widget 的淡入淡出效果

    步骤 1. 创建一个用来淡入淡出的方框 2. 定义一个 StatefulWidget 3. 显示一个用于切换可见状态的按钮 4. 淡入淡出方框 一个完整的例子 在实现 UI 设计时,我们经常需要在屏幕上显示或隐藏各种元素。如若这个过程只是让某个元素快速地出现或者消失,用户们肯定不买帐。我们一般会使用不透明动画让元素淡入淡出,以创建出更加流畅的用...