热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Flutter学习笔记(二)

*、assets当引用图片的时候,需要在pubspec.yaml的文件中的flutter下添加assets,类似于下面的样子:
*、assets 当引用图片的时候,需要在pubspec.yaml的文件中的flutter下添加assets,类似于下面的样子:
image.png

这里需要注意的是文件里的assets只要一个缩进即和flutter里的内容保持对齐,否则,会出问题。我遇到的是,没办法选择运行设备。

一、Layout原理

Flutter布局Layout的核心就是Widget。在Flutter里,基本上任何东西都是Widget,甚至布局的模型。比如images、icon、text等你能在界面上看到的。你看不到的,如Row、Column等也是Widget。
复杂的Widget都是有单个widget组成的。

下面是几个常用Widget
  • Container:
    容器Widget,允许自己定制一些子widget。其初始化如下:
Container({
    Key key,
    this.alignment, this.padding, Color color, Decoration decoration, this.foregroundDecoration, double width, double height, BoxConstraints constraints, this.margin, this.transform, }) 

可以发现,该UI Widget可以控制其中的Widget的padding、margin以及当前widget的宽高、border背景色等等。

  • Row:

    定义一行中的所有Widget和这些Widget的展示方式,包括主轴方向和副轴方向,具体的定义如下,其中MainAxisAlignment表示主轴方向(水平方向),CrossAxisAlignment表示副轴方向(和主轴垂直,即垂直方向):
    row-diagram.png
Row({
    Key key,
    MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start,
    MainAxisSize mainAxisSize: MainAxisSize.max,
    CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center,
    TextDirection textDirection,
    VerticalDirection verticalDirection: VerticalDirection.down,
    TextBaseline textBaseline,
    List children: const [], }) 
  • Column:

    定义一列中的所有Widget和这些Widget的展示方式,也有主轴和副轴两个方向,具体的和Row相同,其定义如下:
    column-diagram.png
Column({
    Key key,
    MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start,
    MainAxisSize mainAxisSize: MainAxisSize.max,
    CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center,
    TextDirection textDirection,
    VerticalDirection verticalDirection: VerticalDirection.down,
    TextBaseline textBaseline,
    List children: const [], }) 
ps:主轴和副轴对于熟悉RN的人应该比较好理解
二、Layout Widget(Container、MaterialApp、Scaffold)

这里通过一个HelloWorld app来展示如何创建一个Widget并展示出来,并区分Material和非Material环境。
hello_word.dart里的代码如下:

class HelloWorld { static Widget helloWorld() { return new MaterialApp( title: 'Hello World', theme: new ThemeData( primarySwatch: Colors.blue, ), home: new Scaffold( appBar: new AppBar(title: new Text('Hello World')), body: new Center( child: new Text( "Hello World", style: new TextStyle(fontSize: 32.0), )), ), ); } static Widget hellWorldWithoutMaterial() { return new Container( decoration: new BoxDecoration(color: Colors.white), child: new Center( child: new Text( 'Hello World', textDirection: TextDirection.ltr, // 这一句必须有 style: new TextStyle(color: Colors.black, fontSize: 40.0), ), ), ); } } 

而在展示上,主要的区别在于非Material下,没有Appbar、背景色和标题等,所有的内容都需要自定义。

注意⚠️:

1、Scaffold必须放在MaterialApp里面,否则会报错,大致如下:

══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
The following assertion was thrown building Scaffold(dirty, state: ScaffoldState#6f74d): No MediaQuery widget found. Scaffold widgets require a MediaQuery widget ancestor. The specific widget that could not find a MediaQuery ancestor was: Scaffold The ownership chain for the affected widget is: Scaffold ← MyApp ← [root] Typically, the MediaQuery widget is introduced by the MaterialApp or WidgetsApp widget at the top of your application widget tree. 

2、非Material下Text的textDirection属性是必须的

??????到底什么是Material App?

三、在水平和垂直方向上Layout(Row、Column)

1、水平布局:

class LayoutImagesH { static layoutImagesH() { MaterialApp material = new MaterialApp( home: new Scaffold( appBar: new AppBar( title: new Text( "Images H Layout", style: new TextStyle(color: Colors.white, fontSize: 20.0), ), ), body: _getLayoutContainer(), ), ); return material; } static _getLayoutContainer() { Row row = new Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, crossAxisAlignment: CrossAxisAlignment.center, children: [ _getRowsImage('images/pic1.jpg'), _getRowsImage('images/pic2.jpg'), _getRowsImage('images/pic3.jpg') ], ); Container cOntainer= new Container( padding: const EdgeInsets.all(15.0), color: Colors.grey, child: row, ); return container; } static _getRowsImage(imageStr) { return new Image.asset( imageStr, width: 100.0, ); } } 

2、垂直布局

class LayoutImagesV { static layoutImagesVSpaceEvenly() { return new Container( color: Colors.green, child: new Column( mainAxisAlignment: MainAxisAlignment.spaceEvenly, crossAxisAlignment: CrossAxisAlignment.center, children: [ new Image.asset('images/pic1.jpg'), new Image.asset('images/pic2.jpg'), new Image.asset('images/pic3.jpg'), ], ), ); } static layoutImagesVSpaceAround() { return new Container( color: Colors.green, child: new Column( mainAxisAlignment: MainAxisAlignment.spaceAround, crossAxisAlignment: CrossAxisAlignment.center, children: [ new Image.asset('images/pic1.jpg'), new Image.asset('images/pic2.jpg'), new Image.asset('images/pic3.jpg'), ], ), ); } static layoutImagesVSpaceBetween() { return new Container( color: Colors.green, child: new Column( mainAxisAlignment: MainAxisAlignment.spaceBetween, crossAxisAlignment: CrossAxisAlignment.center, children: [ new Image.asset('images/pic1.jpg'), new Image.asset('images/pic2.jpg'), new Image.asset('images/pic3.jpg'), ], ), ); } } 

主轴的枚举如下:

enum MainAxisAlignment { start, end, center, /// 第一个和最后一个贴边,中间的平分 spaceBetween, /// 第一个和最后一个距离边的距离是它与中间的距离的一半 spaceAround, /// 完全平分 spaceEvenly, } 
四、按比例布局(Expanded)

使用Expanded Widget,它继承自Flexible,主要是通过其中flex属性来控制,默认整个Expanded里的flex都是1,即平分。我们可以通过控制flex来控制每个Widget所占的大小。

先来看一个现象:
image.png

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
边上黄条是什么鬼,这里用的代码还是上面提到的水平方向的布局,代码里只是修改了图片,就变成了这个鬼样子。

经过尝试,你会发现,只要总尺寸超过了容器的限制,就会出现这种问题。要解决这种问题,目前来看,一是控制图片的尺寸,一个就是使用Expanded 的Widget。

代码如下:

class ExpandedImages { static expandedImages() { return new Container( color: Colors.green, // margin: const EdgeInsets.all(15.0), child: new Row( textDirection: TextDirection.ltr, // mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: _getRowChildren(), ), ); } static expandImagesWithMaterial() { return new MaterialApp( home: new Scaffold( appBar: new AppBar( title: new Text('Expanded') ), body: new Center( child: new Row( crossAxisAlignment: CrossAxisAlignment.center, children: _getRowChildren(), ), ) ), ); } static _getRowChildren() { return [ // new Expanded(child: new Image.asset("images/pic1.jpg")), // new Expanded(flex:2, child: new Image.asset("images/pic2.jpg")), // new Expanded(child: new Image.asset("images/pic3.jpg")) new Expanded(child: new Image.asset("images/expand1.jpg")), new Expanded(flex:2, child: new Image.asset("images/expand2.jpg")), new Expanded(child: new Image.asset("images/expand3.jpg")) ]; } } 
最后的效果如下图所示:
image.png

 

 

 

 

 

 

 

 

 

 

 

 

看到这里其实也明白了,上面的水平方向和垂直方向的布局是有问题的。

五、压缩空间

一般的Row和Column的布局都是尽可能大的利用Space,如果此时不想要这些space,那么可以使用相应的mainAxisSize的值来控制,它只有min和max两个值,默认是max,即我们看见的那种情况。如果设置了该值为min,那么mainAxisAlignment的后面的几个值对其不再起作用。
下面是测试代码:

class _MyHomePageState extends State<_MyHomePage> { @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar(title: new Text("Packing Widget")), body: new Center( child: new Row( mainAxisAlignment: MainAxisAlignment.spaceAround, mainAxisSize: MainAxisSize.min, // crossAxisAlignment: CrossAxisAlignment.center, children: [ new Icon(Icons.star, color: Colors.green[500]), new Icon(Icons.star, color: Colors.green[500]), new Icon(Icons.star, color: Colors.green[500]), new Icon(Icons.star, color: Colors.grey), new Icon(Icons.star, color: Colors.grey), ], ), ) ); } } 
六、常用的Widget

总体来说,所有的Widget可以分为两类:Standard Widget和Material Component。Standard Widget可以在Material App和非Material App中使用,但是Material Component只能在Material App中使用。

1、Standard Widget

常用的是下面四种:

  • Container
    为Widget添加内边距padding, 外边距margins, 边框borders, 背景色background color和其他的一些修饰信息。
  • GridView
    将其中的Widget按照Grid的形式展示,并且是可滑动的。(似乎和UICollectionView相似)。
  • ListView
    将其中的Widget按照List形式展示,并且是可滑动的。(似乎和UIScrollView、UITableView相似)。
  • Stack
    在Widget上覆盖一个Widget

2、Material Component

  • Card
  • ListTitle

推荐阅读
  • 探索聚类分析中的K-Means与DBSCAN算法及其应用
    聚类分析是一种用于解决样本或特征分类问题的统计分析方法,也是数据挖掘领域的重要算法之一。本文主要探讨了K-Means和DBSCAN两种聚类算法的原理及其应用场景。K-Means算法通过迭代优化簇中心来实现数据点的划分,适用于球形分布的数据集;而DBSCAN算法则基于密度进行聚类,能够有效识别任意形状的簇,并且对噪声数据具有较好的鲁棒性。通过对这两种算法的对比分析,本文旨在为实际应用中选择合适的聚类方法提供参考。 ... [详细]
  • 本文详细探讨了OpenCV中人脸检测算法的实现原理与代码结构。通过分析核心函数和关键步骤,揭示了OpenCV如何高效地进行人脸检测。文章不仅提供了代码示例,还深入解释了算法背后的数学模型和优化技巧,为开发者提供了全面的理解和实用的参考。 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 本文介绍了如何在iOS平台上使用GLSL着色器将YV12格式的视频帧数据转换为RGB格式,并展示了转换后的图像效果。通过详细的技术实现步骤和代码示例,读者可以轻松掌握这一过程,适用于需要进行视频处理的应用开发。 ... [详细]
  • 通过使用CIFAR-10数据集,本文详细介绍了如何快速掌握Mixup数据增强技术,并展示了该方法在图像分类任务中的显著效果。实验结果表明,Mixup能够有效提高模型的泛化能力和分类精度,为图像识别领域的研究提供了有价值的参考。 ... [详细]
  • 开发笔记:深入解析Android自定义控件——Button的72种变形技巧
    开发笔记:深入解析Android自定义控件——Button的72种变形技巧 ... [详细]
  • 基于OpenCV的图像拼接技术实践与示例代码解析
    图像拼接技术在全景摄影中具有广泛应用,如手机全景拍摄功能,通过将多张照片根据其关联信息合成为一张完整图像。本文详细探讨了使用Python和OpenCV库实现图像拼接的具体方法,并提供了示例代码解析,帮助读者深入理解该技术的实现过程。 ... [详细]
  • Leetcode学习成长记:天池leetcode基础训练营Task01数组
    前言这是本人第一次参加由Datawhale举办的组队学习活动,这个活动每月一次,之前也一直关注,但未亲身参与过,这次看到活动 ... [详细]
  • 在C语言中,定义在所有函数外部的变量称为全局变量,而定义在函数内部或大括号内的变量称为局部变量。全局变量在整个程序中都可访问,而局部变量仅在其所在的作用域内有效。如果全局变量和局部变量名称相同,在局部作用域内会优先使用局部变量。 ... [详细]
  • 本文介绍如何在 Android 中自定义加载对话框 CustomProgressDialog,包括自定义 View 类和 XML 布局文件的详细步骤。 ... [详细]
  • 在Java项目中,当两个文件进行互相调用时出现了函数错误。具体问题出现在 `MainFrame.java` 文件中,该文件位于 `cn.javass.bookmgr` 包下,并且导入了 `java.awt.BorderLayout` 和 `java.awt.Event` 等相关类。为了确保项目的正常运行,请求提供专业的解决方案,以解决函数调用中的错误。建议从类路径、依赖关系和方法签名等方面入手,进行全面排查和调试。 ... [详细]
  • 本文探讨了资源访问的学习路径与方法,旨在帮助学习者更高效地获取和利用各类资源。通过分析不同资源的特点和应用场景,提出了多种实用的学习策略和技术手段,为学习者提供了系统的指导和建议。 ... [详细]
  • 深入解析 Android TextView 中 getImeActionLabel() 方法的使用与代码示例 ... [详细]
  • 本文将深入探讨生成对抗网络(GAN)在计算机视觉领域的应用。作为该领域的经典模型,GAN通过生成器和判别器的对抗训练,能够高效地生成高质量的图像。本文不仅回顾了GAN的基本原理,还将介绍一些最新的进展和技术优化方法,帮助读者全面掌握这一重要工具。 ... [详细]
  • 如何使用 net.sf.extjwnl.data.Word 类及其代码示例详解 ... [详细]
author-avatar
wwhh47123_829
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有