Flutter开发之Widget学习

一、Text 组件

属性

textAlign: TextAlign.left,                           -----文本对齐方式

maxLines: 1,                                            -----显示最大行

overflow: TextOverflow.clip,                 -----文本溢出的处理方式

  • clip:直接切断溢出的文字。
  • ellipsis:在后边显示省略号(...)  常用
  • fade: 渐变消失效果

style文字的样式

 body: new Center(
          child: new Text(‘非淡泊无以明志,非宁静无以致远。(诸葛亮)‘,
              textAlign: TextAlign.left,
              maxLines: 1,
              overflow: TextOverflow.ellipsis,
              style: TextStyle(
                fontSize: 20,
                color: Color.fromARGB(255, 0, 0, 255),
                decoration: TextDecoration.underline,
                decorationStyle: TextDecorationStyle.solid,
                fontStyle: FontStyle.italic,
              )),
        ),

二、Container组件

Alignment属性,Container内child的对齐方式,也就是容器子内容的对齐方式,并不是容器本身的对齐方式。

padding         内边距

margin           外边距

decoration     装饰器

使用:

body: new Center(
          child: new Container(
            child: new Text(
              ‘非淡泊无以明志,非宁静无以致远。(诸葛亮)‘,
              style: TextStyle(fontSize: 30.0),
            ),
            alignment: Alignment.topLeft,
            width: 500.0,
            height: 200.0,
            //color: Colors.lightBlue,
            //padding: const EdgeInsets.all(10),    //内边距
            padding: const EdgeInsets.fromLTRB(10.0, 50.0, 0, 0),
            margin: const EdgeInsets.all(20.0),
            decoration: new BoxDecoration(
              gradient: const LinearGradient(
                  colors: [Colors.lightBlue, Colors.green, Colors.purple]
                  ),
                  border: Border.all(width: 5.0,color:Colors.red
                  ),
            ),
          ),
        ),

三、Image组件

加入图片的方式:

  1. Image.asset                  项目资源图片
  2. Image.file (绝对路径)    系统资源图片
  3. Image.network(url)   网络资源图片

fit属性

  • BoxFit.fill
  • BoxFit.contain
  • BoxFit.cover

repeat属性

  • ImageRepeat.repeat      横向和纵向都重复,铺满整个容器
  • ImageRepeat.repeatX    横向重复
  • ImageRepeat.repeatY    纵向重复
body: new Center(
            child: new Container(
          child: new Image.network(
            ‘https://profile.csdnimg.cn/0/5/2/1_jyd0124‘,
            fit: BoxFit.cover,
            //color: Colors.lightBlue,
            //colorBlendMode: BlendMode.darken, //图片混合模式(colorBlendMode)和color属性配合使用
          ),
          width: 300.0,
          height: 200.0,
          color: Colors.lightGreen,
        )
    ),

四、ListView组件

列表使用

body: new ListView(
          children: <Widget>[
            /*new Image.network(
                ‘https://cdn2.jianshu.io/assets/web/banner-s-club-aa8bdf19f8cf729a759da42e4a96f366.png‘),
            new Image.network(
                ‘https://cdn2.jianshu.io/assets/web/banner-s-7-1a0222c91694a1f38e610be4bf9669be.png‘),
             */ //图片列表使用
            new ListTile(
              leading: new Icon(
                Icons.perm_camera_mic,
              ),
              title: new Text(‘perm_camera_mic‘),
            ),
            new ListTile(
              leading: new Icon(
                Icons.perm_phone_msg,
              ),
              title: new Text(‘perm_phone_msg‘),
            ),
          ],
        ),

横向列表:ListView组件里加一个scrollDirection属性

body: new Center(
            child: new Container(
                height: 200.0,
                child: new ListView(
                  scrollDirection: Axis.horizontal, //Axis.vertical:纵向列表
                  children: <Widget>[
                    new Container(
                      width: 230.0,
                      color: Colors.lightBlue,
                    ),
                    new Container(
                      width: 230.0,
                      color: Colors.lightGreen,
                    ),
                  ],
                ))),

Dart语言List的声明方式:

  • var myList = List(): 非固定长度的声明。
  • var myList = List(2): 固定长度的声明。
  • var myList= List<String>():固定类型的声明方式。
  • var myList = [1,2,3]: 对List直接赋值
import ‘package:flutter/material.dart‘;

void main() =>
    runApp(MyApp(items: List<String>.generate(1000, (i) => ‘item $i‘)));

class MyApp extends StatelessWidget {
  final List<String> items;
  MyApp({Key key, @required this.items}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: ‘ListView Dome‘,
      home: new Scaffold(
        appBar: new AppBar(title: new Text(‘ListView Widget‘)),
        body: new ListView.builder(
            itemCount: items.length,
            itemBuilder: (context, index) {
              return new ListTile(
                title: new Text(‘${items[index]}‘),
              );
            }),
      ),
    );
  }
}

五、GridView组件

  常用属性:

  • crossAxisSpacing:网格间的空当。
  • crossAxisCount:一行放置的网格数量
body: GridView.count(
            padding: EdgeInsets.all(20.0),
            crossAxisSpacing: 10.0,
            crossAxisCount: 3,
            children: <Widget>[
              const Text(‘I am j.y.d‘),
              const Text(‘I love flutter‘),
              const Text(‘jyd0124.com‘),
              const Text(‘2020/02/06‘),
              const Text(‘Come on,China!‘),
              const Text(‘Come on,Wuhan!‘),
            ],
          ),

官方已经不鼓励使用这种方法,另一种写法为

body: GridView(
           gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
             crossAxisCount: 3,
             mainAxisSpacing: 2.0,
             crossAxisSpacing: 2.0,
             childAspectRatio: 0.75,
             ),
            children: <Widget>[
              new Image.network(‘http://img5.mtime.cn/mg/2019/10/02/105324.67493314_170X256X4.jpg‘,fit:BoxFit.cover),
              new Image.network(‘http://img5.mtime.cn/mg/2019/09/26/092514.83698073_170X256X4.jpg‘,fit:BoxFit.cover),
              new Image.network(‘http://img5.mtime.cn/mg/2019/11/07/111316.10093613_170X256X4.jpg‘,fit:BoxFit.cover),
              new Image.network(‘http://img5.mtime.cn/mg/2019/12/13/094432.64997517_170X256X4.jpg‘,fit:BoxFit.cover),
              new Image.network(‘http://img31.mtime.cn/mt/2014/02/22/230757.74994253_220X124X4.jpg‘,fit:BoxFit.cover),
              new Image.network(‘http://img5.mtime.cn/mg/2019/07/10/164947.40820910_170X256X4.jpg‘,fit:BoxFit.cover),
            ],
        ),
  • childAspectRatio:宽高比
  • mainAxisSpacing:横向网格空档 
  • crossAxisSpacing: 向纵向网格空挡

至此,使用组件的学习就到这儿了,下篇我们将学习布局的相关知识!

原文地址:https://www.cnblogs.com/jyd0124/p/widget.html

时间: 2024-10-12 18:24:59

Flutter开发之Widget学习的相关文章

Flutter开发之Widget布局和页面导航

一.水平布局Row Row控件可以分为非灵活排列和灵活排列两种,灵活的可以在外边加入Expanded使用 两者混用: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { // TODO: implement build return Ma

iOS 开发之Widget的开发及使用(下)

在iOS 开发之Widget的开发及使用(上)中都交代清楚了关于widget扩展的添加,以及布局部分的内容,下面说下关键部分:关于数据共享的操作. 在Apple发布iOS8.0以后,对App有提供一个新的扩展选择项,叫做App groups,选择宿主Target之后,在capabilities选项卡下面会找到这个选项: 那么这个选项主要是做何使用呢? iOS系统,每个开发应该都清楚,其内部程序都是遵循沙盒机制,App与App之间,是不能进行数据共享的,A 不能访问 B 的数据,同样 B 也不能访

iOS 开发之Widget的开发及使用(上)

在iOS8发布以后,Apple官方发布了,有关第三方开发软件可以集成进手机的通知中心,对于我们这帮开发来说,无疑是一个很新鲜的玩意儿,都巴不得赶紧将自己的App加入Widget的功能扩展. 那么关于widget的功能扩展需要做的步骤,我简单的分享一下我个人的简单过程.不对望斧正.我将会分为两次分别概述widget的基本添加以及布局和数据共享部分. 首先,在自己的在xcode的菜单项,为当前项目添加一个新的target.然后选择Application Extension 类型选Today. 接下来

Swift网络开发之NSURLSession学习笔记

先上效果图:        功能: -单个任务下载 -暂停下载任务 -取消下载任务 -断点下载 -显示下载进度及速度 -多任务下载 -分别控制各个任务 在如今移动互联网的浪潮中,手机APP越来越依赖网络通讯来交互数据.今天我们就来分享下如何通过使用NSURLSession这个Apple官方提供的网络接口实现文件下载的思路. NSURLSsession 先来介绍下NSURLSession这个接口.NSURLSession是苹果在WWDC2013上推出的用于替代它的前辈NSURLConnection

iOS开发之widget实现

前言 ????iOS extension的出现,方便了用户查看应用的服务,比如用户可以在Today的widgets中查看应用的简略信息,然后点击进入相关的应用界面.暂且不表网络上现有的widget文章,本篇文章主要说明本人具体实现widget的步骤,希望能够帮助到需要实现widget的同行朋友. 图1 Today的widget展示----以支付宝为例说明 文章将依次从以下几个问题着手,进行详细说明:1.如何为现有的工程添加widget:2.如何绘制UI:3.如何调起app:4.如何与host a

IOS开发之XCode学习003:UIButton基础

此文学习来源为:http://study.163.com/course/introduction/1002858003.htm 此工程文件实现功能:  1.UIButton的控件基本概念 2.UIButton的创建方法 3.UIButton的类型 4.可显示图片的UIButton 可将准备好的图片直接拖到工程名字UIButton下 ===========================ViewController.m脚本============================== //创建普通按

IOS开发之XCode学习014:警告对话框和等待提示器

此文学习来源为:http://study.163.com/course/introduction/1002858003.htm 此工程文件实现功能:  1.警告对话框和等待提示器的概念 2.警告对话框和等待提示器的属性 3.警告对话框和等待提示器的使用 ===========================ViewController.h脚本============================== @interface ViewController : UIViewController <U

android开发之Notification学习笔记

今天总结了一下Notification的使用,与大家分享一下. MainActivity.java: 本文参考:http://www.jb51.net/article/36567.htm,http://www.cnblogs.com/linjiqin/archive/2011/12/14/2288074.html public class MainActivity extends Activity { private Button btn; private NotificationManager

(转)iOS开发之CocoaAsyncSocket学习

AsyncSocket类是支持TCP的AsyncUdpSocket是支持UDP的AsyncSocket是封装了CFSocket和CFSteam的TCP/IP socket网络库.它提供了异步操作,本地cocoa类的基于delegate的完整支持.主要有以下特性: 队列的非阻塞的读和写,而且可选超时.你可以调用它读取和写入,它会当完成后告知你.自动的socket接收.如果你调用它接收连接,它将为每个连接启动新的实例,当然,也可以立即关闭这些连接.委托(delegate)支持.错误.连接.接收.完整