flutter material widget组件之信息展示组件使用详解

flutter material widget组件之信息展示组件,供大家参考,具体内容如下

widget分为两类:widgets library中的标准widget和Material Components library中的专用widget;任何应用程序都可以使用widgets library中的widget,但只有Material应用程序可以使用Material Components库。其中Card,ListTitle就是Material Components库中的组件。

Image Icon Chip Tooltip

Image:一个显示图片的widget,
通常用 获取网络图片用 Image.network(String src, {}),
加载本地图片用 Image.asset(String name, {})
从一个file文件获取图片 Image.file(File file, {})
从unit8list获取图片 Image.memory(Uint8List bytes, {})
Icon:a Material Design icon.
Chip:标签,一个Material widget。 它可以将一个复杂内容实体展现在一个小块中,如联系人
Tooltip:一个文本提示工具,帮助解释一个按钮或其他用户界面,当widget长时间按下时(当用户采取其他适当操作时)显示一个提示标签

构造函数

Image({
        Key key,
        @required this.image,//图片Image对象
        this.semanticLabel,// 语义化的标间
        this.excludeFromSemantics = false,//控制语义化标签的显示,若为true,则semantiicLabel将被忽略
        this.width, // 图片宽
        this.height,// 图片高
        this.color,// 图片颜色
        this.colorBlendMode,//颜色混合模式
        this.fit,
        this.alignment = Alignment.center,// 居中方式
        this.repeat = ImageRepeat.noRepeat,// 图片是否重复平铺
        this.centerSlice,//
        this.matchTextDirection = false,// 是否根据文本方向绘制图片
        this.gaplessPlayback = false,// 若为真,更新时还是显示原图像,否则不显示任何内容
        this.filterQuality = FilterQuality.low,//滤镜质量
    })
     Image.asset(
        String name, // 本地图片名
        {
            Key key,
            AssetBundle bundle,
            this.semanticLabel,
            this.excludeFromSemantics = false,
            double scale,
            this.width,
            this.height,
            this.color,
            this.colorBlendMode,
            this.fit,
            this.alignment = Alignment.center,
            this.repeat = ImageRepeat.noRepeat,
            this.centerSlice,
            this.matchTextDirection = false,
            this.gaplessPlayback = false,
            String package,
            this.filterQuality = FilterQuality.low,
        }
    ),
    Image.network(
        String src, // 网络图片的url路径
        {
            Key key,
            double scale = 1.0,//缩放比例
            this.semanticLabel,
            this.excludeFromSemantics = false,//控制语义化标签的显示,若为true,则semantiicLabel将被忽略
            this.width,
            this.height,
            this.color,
            this.colorBlendMode,
            this.fit,// 图片适配容器的方式,相当于css中的backgrou-iamge-size,有BoxFit.fill,contain,cover等值
            this.alignment = Alignment.center,
            this.repeat = ImageRepeat.noRepeat,
            this.centerSlice,// 中心切片 ??
            this.matchTextDirection = false,
            this.gaplessPlayback = false,
            this.filterQuality = FilterQuality.low,
            Map<String, String> headers,
        } 
    )
    Icon(
        this.icon, // 要显示的图标
        {
            Key key,
            this.size,//图标大小
            this.color,//图标颜色
            this.semanticLabel,//语义化标签
            this.textDirection,// 文本方向
        }
    )
    Chip({
        Key key,
        this.avatar,//通常将头像,图片之类的信息放在此widget中
        @required this.label,//标签
        this.labelStyle,//标签样式
        this.labelPadding,//标签内边距
        this.deleteIcon,//当onDeleted回调函数被设置时,添加此图标
        this.onDeleted,// 回调函数,点击deleteIcon时的回调
        this.deleteIconColor,//deleteIcon的颜色
        this.deleteButtonTooltipMessage,//长按删除button的提示信息
        this.shape,//形状
        this.clipBehavior = Clip.none,//剪切方式
        this.backgroundColor,//背景色
        this.padding,//内边距
        this.materialTapTargetSize,//材质匹配目标大小
    }) 
    Tooltip({
        Key key,
        @required this.message, //长按提示框中的内容
        this.height = 32.0,// 此提示框的高
        this.padding = const EdgeInsets.symmetric(horizontal: 16.0),//提示框的内边距
        this.verticalOffset = 24.0,//提示框距离小部件的垂直偏移
        this.preferBelow = true,//提示是否默认显示在小部件下面
        this.excludeFromSemantics = false,//是否从语义树中排出提示信息
        this.child,// 长按的小部件
    }) 

应用示例

import 'package:flutter/material.dart';

void main()=>runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home:Scaffold(
        appBar: AppBar(
          title: Text("data"),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              new Image.network(
                'http://pic.baike.soso.com/p/20130828/20130828161137-1346445960.jpg',
                // 缩放比例
                scale: 6.0,
              ),
              new Image.asset("assets/images/2.jpg"),
              Icon(
                Icons.ac_unit,
                color: Colors.blue,//图标颜色
                size: 30,//图标大小
                semanticLabel: "icon演示",//语义化标签,好像没卵用??
                textDirection: TextDirection.ltr,// 文本方向
                
              ),
              Chip(
                // 通常将头像,图片之类的信息放在此widget中
                avatar:  CircleAvatar(
                  backgroundColor: Colors.grey.shade800,
                  child: Text('AB'),
                ),
                label: Text('chip label'),//标签
                labelStyle: TextStyle(color: Colors.red),//标签样式
                deleteIcon: Icon(Icons.add),//当onDeleted回调函数被设置时,添加此图标
                onDeleted: (){
                  print("ondeleted..............");
                },// 回调函数,点击deleteIcon时的回调
                deleteIconColor: Colors.green,//deleteIcon的颜色
                deleteButtonTooltipMessage: "aaaa",//长按删除button的提示信息
                backgroundColor: Colors.greenAccent,//背景色
              ),

              Tooltip(
                message: "提示信息",//长按提示框中的内容
                height: 50,// 此提示框的高
                padding: EdgeInsets.all(12),//提示框的内边距
                verticalOffset:60,//提示框距离小部件的垂直偏移 此处向下偏移60
                preferBelow: true,//提示是否默认显示在小部件下面
                excludeFromSemantics: true,//是否从语义树中排出提示信息
                child: Text("data"),// 长按的小部件
              ),
              
            ],
          ),
        ),
      ),
    );
  }
}

DataTable

数据表显示原始数据集。它们通常出现在桌面企业产品中。DataTable Widget实现这个组件

构造函数

DataTable({
        Key key,
        @required this.columns,// 各列配置
        this.sortColumnIndex,//排序列的键
        this.sortAscending = true,//有排序列的话,默认升序排序
        this.onSelectAll,// 选中行是的回调
        @required this.rows,// 各行配置
    })

    DataColumn({
        @required this.label,//列标题
        this.tooltip,//长按列标题提示
        this.numeric = false,//此列是否表示数据
        this.onSort,//按此列排序时的回调函数
    })
    DataRow({
        this.key,
        this.selected = false,//行是否被选中
        this.onSelectChanged,//选中改变时的回调
        @required this.cells,// 行中每个单元的数据
    })
    DataCell(
        this.child,
        {
            this.placeholder = false,//子项是否是占位符
            this.showEditIcon = false,//是否显示编辑图标
            this.onTap,//点击编辑图片时的回调
        }
    )  

应用示例

import 'package:flutter/material.dart';

void main()=>runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home:Scaffold(
        appBar: AppBar(
          title: Text("data"),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              DataTable(
                columns: [
                  DataColumn(
                    label: Text("姓名"),//列标题
                    tooltip: "name",//长按列标题提示
                    numeric: false,// 是否数字
                    onSort: (inx,bool){
                      print("点击列了。。。。。"+inx.toString()+"...."+bool.toString());
                    } //按此列排序时的回调函数
                  ),
                  DataColumn(
                    label: Text("年龄"),
                    numeric: true,
                    onSort: (inx,bool){
                      print("点击列了。。。。。"+inx.toString()+"...."+bool.toString());
                    }
                  ),
                  DataColumn(
                    label: Text("职业")
                  ),
                ],
                rows: [
                  DataRow(
                    cells: [
                      DataCell(
                        Text("张三")
                      ),
                      DataCell(
                        Text("15")
                      ),
                      DataCell(
                        Text("乡长")
                      ),
                    ]
                  ),
                  DataRow(
                    cells: [
                      DataCell(
                        Text("李四")
                      ),
                      DataCell(
                        Text("95")
                      ),
                      DataCell(
                        Text("鼓手")
                      ),
                    ]
                  ),
                  DataRow(
                    selected: true,// 行是否被选中
                    //选中改变时的回调
                    onSelectChanged: (val){
                      print("行被选中......"+val.toString());
                    },
                    cells: [
                      DataCell(
                        Text("飞飞")
                      ),
                      DataCell(
                        Text("55"),
                        placeholder: false,//子项是否是占位符
                        showEditIcon: true,//是否显示编辑图标
                        onTap: (){
                          print("此列被编辑了。。。。。。。。。。。");
                        }//点击编辑图片时的回调
                      ),
                      DataCell(
                        Text("骑手")
                      ),
                    ]
                  ),
                ],

              )
            ],
          ),
        ),
      ),
    );
  }
}

Card

一个 Material Design 卡片。拥有一个圆角和阴影

构造函数

Card({
    Key key,
    this.color, // 颜色
    this.elevation,// z坐标轴坐标
    this.shape,//形状
    this.margin = const EdgeInsets.all(4.0),//外边距
    this.clipBehavior = Clip.none,//剪切方式
    this.child,//子组件
    this.semanticContainer = true,//此部件是否为单个语义容器
  })

应用示例

import 'package:flutter/material.dart';
void main()=>runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home:Scaffold(
        appBar: AppBar(
          title: Text("data"),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              Card(
                // 子项
                child: Container(child: Text("data"),),
                // 颜色
                color: Colors.green,
                // 外边距
                margin: EdgeInsets.all(55),
                // z轴坐标  没卵用啊
                elevation: 55,
                // 形状
                shape:  Border.all(color: Colors.red),
                // 布尔型,好像也没卵用
                semanticContainer: false,
                clipBehavior: Clip.antiAliasWithSaveLayer,

              )
            ],
          ),
        ),
      ),
    );
  }
}

LinearProgressIndicator

一个线性进度条,另外还有一个圆形进度条CircularProgressIndicator

构造函数

LinearProgressIndicator({
    Key key,
    double value, // 指示器的值
    Color backgroundColor,//背景颜色
    Animation<Color> valueColor,///animation类型的参数,用来设定进度值的颜色,默认为主题色,指定常数颜色使用
    String semanticsLabel,//语义标签
    String semanticsValue,// 语义值
  })
  CircularProgressIndicator({
    Key key,
    double value,// 指示器的值
    Color backgroundColor,//背景颜色
    Animation<Color> valueColor,//animation类型的参数,用来设定进度值的颜色,默认为主题色,指定常数颜色使用
    this.strokeWidth = 4.0,// 指示器线宽
    String semanticsLabel,
    String semanticsValue,
  })

应用示例

import 'package:flutter/material.dart';
void main()=>runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home:Scaffold(
        appBar: AppBar(
          title: Text("data"),
        ),
        body: Column(
          children: <Widget>[
            LinearProgressIndicator(
              value: 0.6,// 指示器的进度值
              backgroundColor: Colors.greenAccent,//轨道背景颜色
              semanticsLabel: "60%",
              semanticsValue: "6",
              valueColor: new AlwaysStoppedAnimation<Color>(Colors.red),// 进图条动画颜色
              // valueColor: CurvedAnimation(),
            ),
            Text("圆形指示器"),
            CircularProgressIndicator(
              value: 0.5,
              backgroundColor: Colors.black,// 背景色没有起作用??
              valueColor: new AlwaysStoppedAnimation<Color>(Colors.red)
            ),

          ],
        ),
      ),
    );
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Flutter组件状态管理的3种方法

    前言 前面讲了Flutter布局,布局只是静态的.在Flutter中,组件分为StatelesslWidget和StatefulWidget. StatelesslWidget 没有状态,是一成不变的.比如图标,文字,按钮等 StatefulWidget 有状态的组件,页面数据是动态的,或者会随着用户操作变化,比如多选框,文本输入框等. 有状态组件 重点来了,如何使用实现一个有状态的组件呢? 有状态的组件一般由两个类构成,一个StatefulWidget子类和一个State子类. State类包

  • flutter material widget组件之信息展示组件使用详解

    flutter material widget组件之信息展示组件,供大家参考,具体内容如下 widget分为两类:widgets library中的标准widget和Material Components library中的专用widget;任何应用程序都可以使用widgets library中的widget,但只有Material应用程序可以使用Material Components库.其中Card,ListTitle就是Material Components库中的组件. Image Icon

  • 为Jquery EasyUI 组件加上清除功能的方法(详解)

    1.背景 在使用 EasyUI 各表单组件时,尤其是使用 ComboBox(下拉列表框).DateBox(日期输入框).DateTimeBox(日期时间输入框)这三个组件时,经常有这样的需求,下拉框或日期只允许选择.不允许手动输入,这时只要在组件选项中加入 editable:false 就可以实现,但有一个问题,就是:一旦选择了,没办法清空.经过研究,可以用一个变通的解决方案:给组件加上一个"清除"按钮,当有值是,显示按钮,点击按钮可清空值,当无值是,隐藏按钮. 2.函数定义 定义JS

  • Vue中的组件及路由使用实例代码详解

    1.组件是什么 组件系统是 Vue 的一个重要概念,因为它是一种抽象,允许我们使用小型.独立和通常可复用的组件构建大型应用.通常一个应用会以一棵嵌套的组件树的形式来组织: 1.1组件的声明及使用 全局组件 <body> <div id="app"> <!-- 用全局组件的名称作为HTML的标签 --> <myzujian></myzujian> </div> </body> <script>

  • Vue.js 2.x之组件的定义和注册图文详解

    前言 什么是组件 组件: 组件的出现,就是为了拆分Vue实例的代码量的,能够让我们以不同的组件,来划分不同的功能模块,将来我们需要什么样的功能,就可以去调用对应的组件即可. 模块化和组件化的区别 模块化:是从代码逻辑的角度进行划分的:方便代码分层开发,保证每个功能模块的职能单一 组件化:是从UI界面的角度进行划分的:前端的组件化,方便UI组件的重用 全局组件的定义和注册 组件Component是 Vue.js 最强大的功能之一.组件可以扩展 HTML 元素,封装可重用的代码. 全局组件的定义和注

  • Vue.js子组件向父组件通信的方法实例代码详解

    一.场景描述: 曾经有个电商项目,其中有个"老带新"模块,而且该模块新增的入口很多,但是新增后展示效果还不一样,当时就考虑将新增的组件单独拿出来,其实就是一个子组件向父组同步数据的过程. 当然,背景不重要了,关键是看实现的方式. 二.场景展示效果 (PS:展示效果请忽略美感) 三.如何实现 注意:Vuejs架构通过vue-cli 3.X搭建的项目,版本无所谓. 1.先看下目录体系,下图子组件放在components文件夹内,模拟子组件为itemAdd.vue,父组件视图放在views文

  • vue组件之间的数据传递方法详解

    (1)props属性: 在父组件中,可以通过子组件标签属性的形式将数据或者函数传给子组件,子组件通过props去读取父组件传过来的数据 用法 父组件传数据给子组件: 一般的属性值都是用来给子组件展示的 子组件传数据给父组件 属性值为函数类型的,一般是用来子组件向父组件传递数据,子组件通过调用父组件传过来的函数,可以修改父组件的状态数据 缺点: 隔层组件间传递: 必须逐层传递(麻烦) 兄弟组件间: 必须借助父组件(麻烦) 注意: //子组件获取父组件传过来的值 props: { obj: {//o

  • Vue 可拖拽组件Vue Smooth DnD的使用详解

    目录 简介和 Demo 展示 API: Container 属性 生命周期 回调 事件 API: Draggable 实战 简介和 Demo 展示 最近需要有个拖拽列表的需求,发现一个简单好用的 Vue 可拖拽组件.安利一下~ Vue Smooth DnD 是一个快速.轻量级的拖放.可排序的 Vue.js 库,封装了 smooth-dnd 库. Vue Smooth DnD 主要包含了两个组件,Container 和 Draggable,Container 包含可拖动的元素或组件,它的每一个子元

  • Vue之vue-tree-color组件实现组织架构图案例详解

    目录 npm 安装loader Import Plugins 开始 排列方式 折叠展示 点击节点 其他功能 npm # use npm npm install vue-tree-color 安装loader npm install --save-dev less less-loader Import Plugins import Vue from 'vue' import Vue2OrgTree from 'vue-tree-color' Vue.use(Vue2OrgTree) 开始 因为已经

  • vue组件生命周期钩子使用示例详解

    目录 组件生命周期图 组件生命周期钩子 1.beforeCreate 2.created 3.beforeMount 4.mounted 5.beforeUpdate 6.updated 7.activated 8.deactivated 9.beforeDestroy 10.destroyed 11.errorCaptured 组件生命周期图 组件生命周期钩子 所有的生命周期钩子自动绑定 一.组件的生命周期:一个组件从创建到销毁的整个过程 二.生命周期钩子:在一个组件生命周期中,会有很多特殊的

  • Vue组件化(ref,props, mixin,.插件)详解

    目录 1.ref属性 2.props配置项 props总结 3.mixin混入 3.1.局部混入 3.2.全局混入 mixin混入总结 4.插件 插件总结 1.ref属性 被用来给元素或子组件注册引用信息(id的替代者) 应用在html标签上获取的是真实DOM元素,应用在组件标签上是组件实例对象(vc) 使用方式: 打标识:<h1 ref="xxx">.....</h1>或 <School ref="xxx"></Schoo

随机推荐