Flutter 基础控件第一弹

一 容器组件

容器组件Container 自身包含一个Widget 其自身属性有Key,aligment ,padding margin color decoration foregroundDecoration width height constraints transfotm child 。

基础的大家都认识,就不多介绍了,

Container 构造方法

Container({

    Key key,

    this.alignment,

    this.padding,

    Color color,

    Decoration decoration,

    this.foregroundDecoration,

    double width,

    double height,

    BoxConstraints constraints,

    this.margin,

    this.transform,

    this.child,

  })

    其中 key  类型是Key, 是container的唯一标识符,用于查找更新,

aligment 控制child 的对齐方式 ,其类型是AlignmentGeometry 是一个抽象类,有多种对其方式 ,这是几种对其方式

 /// The top left corner.

  static const Alignment topLeft = Alignment(-1.0, -1.0);


  /// The center point along the top edge.

  static const Alignment topCenter = Alignment(0.0, -1.0);


  /// The top right corner.

  static const Alignment topRight = Alignment(1.0, -1.0);


  /// The center point along the left edge.

  static const Alignment centerLeft = Alignment(-1.0, 0.0);


  /// The center point, both horizontally and vertically.

  static const Alignment center = Alignment(0.0, 0.0);


  /// The center point along the right edge.

  static const Alignment centerRight = Alignment(1.0, 0.0);


  /// The bottom left corner.

  static const Alignment bottomLeft = Alignment(-1.0, 1.0);


  /// The center point along the bottom edge.

  static const Alignment bottomCenter = Alignment(0.0, 1.0);

二 图片组件 

有从网络获取 assets获取,可以看到有四个

Image.network(

String src, {

Key key,

  double scale =1.0,

  this.semanticLabel,

  this.excludeFromSemantics =false,

  this.width,

  this.height,

  this.color,

  this.colorBlendMode, // 对图片进行手动处理,如改动图片颜色

  this.fit, // 图片填充模式 BoxFit 与Android的ImageView的ScanType类似

  this.alignment = Alignment.center, // 控制图片摆放位置

  this.repeat = ImageRepeat.noRepeat, // 设置图片充足模式。,默认不重复

  this.centerSlice,

  this.matchTextDirection =false, // 是否是从左到右

  this.gaplessPlayback =false, // 当ImageProvider发生变化后,重新加载图片,

//   原图片是否保留

  this.filterQuality = FilterQuality.low,// 加载图片质量

  Map headers,

})

BoxFit  这里有具体的图片显示效果

enum BoxFit {

/// Fill the target box by distorting the source's aspect ratio.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_fill.png)

  fill,

  /// As large as possible while still containing the source entirely within the

/// target box.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_contain.png)

  contain,

  /// As small as possible while still covering the entire target box.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_cover.png)

  cover,

  /// Make sure the full width of the source is shown, regardless of

/// whether this means the source overflows the target box vertically.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_fitWidth.png)

  fitWidth,

  /// Make sure the full height of the source is shown, regardless of

/// whether this means the source overflows the target box horizontally.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_fitHeight.png)

  fitHeight,

  /// Align the source within the target box (by default, centering) and discard

/// any portions of the source that lie outside the box.

///

/// The source image is not resized.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_none.png)

  none,

  /// Align the source within the target box (by default, centering) and, if

/// necessary, scale the source down to ensure that the source fits within the

/// box.

///

/// This is the same as `contain` if that would shrink the image, otherwise it

/// is the same as `none`.

///

/// ![](https://flutter.github.io/assets-for-api-docs/assets/painting/box_fit_scaleDown.png)

  scaleDown,

}

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,

})

三 文本组件

属性如下,常用属性

const Text(

this.data,// String 显示的文本

{

Key key,

  this.style, // 文本样式

  this.strutStyle,// StrutStyle

  this.textAlign, //文本对齐方式

  this.textDirection, // 文本排列方式

  this.locale, // 在相同的字符情况下,根据区域,设置不同的字体

  this.softWrap,// 文本在软换行出换行

  this.overflow,// 如何处理溢出的文本 TextOverFlow

  this.textScaleFactor,//double

  this.maxLines,

  this.semanticsLabel,

})

四 图标组件

图标组件Icon,Icon不可以交互,IconButton可以

Icons 框架自有的icon资源

IconTheme

ImageIcon AssetImages 或者其他图片显示icon

IconButton 如果 onPressed 是null 则这个图标不可点击

const IconButton({

Key key,

  this.iconSize =24.0,

  this.padding =const EdgeInsets.all(8.0),

  this.alignment = Alignment.center,// 定义icon的对其方式

  @required this.icon,

  this.color,

  this.highlightColor,

  this.splashColor,

  this.disabledColor,//禁用时的颜色,

  @required this.onPressed,

  this.tooltip,//按钮按下时的提示语

})

RaisedButton 一个凸起的矩形按钮,按下时会有一个触摸效果


const RaisedButton({

Key key,

  @required VoidCallback onPressed,

  ValueChanged onHighlightChanged,

  ButtonTextTheme textTheme,

  Color textColor,

  Color disabledTextColor,

  Color color,

  Color disabledColor,

  Color highlightColor,

  Color splashColor,

  Brightness colorBrightness,

  double elevation,

  double highlightElevation,// 高亮时的阴影

  double disabledElevation,

  EdgeInsetsGeometry padding,

  ShapeBorder shape,

  Clip clipBehavior = Clip.none,

  MaterialTapTargetSize materialTapTargetSize,

  Duration animationDuration,

  Widget child,

}

五 列表组件

ListView  常用的列表组件,可以支持水平和垂直

list item 数量较少 可以使用

ListView({

Key key,

  Axis scrollDirection = Axis.vertical,// 控制列表的排列方向

  bool reverse =false,// 组件排列反向

  ScrollController controller,

  bool primary,

  ScrollPhysics physics,

  bool shrinkWrap =false,

  EdgeInsetsGeometry padding,

  this.itemExtent,

  bool addAutomaticKeepAlives =true,

  bool addRepaintBoundaries =true,

  bool addSemanticIndexes =true,

  double cacheExtent,

  List children =const [],//列表元素

  int semanticChildCount,

  DragStartBehavior dragStartBehavior = DragStartBehavior.start,

})

如果数量较多 基础组件也是listview 但还需要添加一个itemBuilder

六 网格布局,GridView

GridView({

Key key,

  Axis scrollDirection = Axis.vertical,

  bool reverse =false,// 默认是从左上开始滚动

  ScrollController controller,//控制child滚动时候的位置

  bool primary,

  ScrollPhysics physics,

  bool shrinkWrap =false,

  EdgeInsetsGeometry padding,

  @required this.gridDelegate,

  bool addAutomaticKeepAlives =true,

  bool addRepaintBoundaries =true,

  bool addSemanticIndexes =true,

  double cacheExtent,

  List children =const [],

  int semanticChildCount,

})

具体使用后续会有介绍,目前先有个大概的轮廓

项目地址:

https://github.com/liuhang1234/flutter_base_widget

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,444评论 0 23
  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,317评论 0 10
  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 9,449评论 0 13
  • 你若盛开,清风自来 在英民的三载,把我们从刚发芽的小种子培育到独当一面的小树。我们把好多事都写进了青春日记,把...
    辞淳阅读 296评论 0 1
  • 年前小孩自告奋勇要自己把房间整理好。 我听了当然满口答应,小孩自己整理房间,我求之不得,一来我可以偷个懒,二来可以...
    美丽色彩阅读 188评论 0 3