Flutter的基础UI的搭建

App端主要的就是UI的搭建,和数据的请求,然后将服务端的数据以精美的UI展示出来,通过这种方法将信息传递给普通用户。普通用户在App上进行操作,将用户行为和数据上传到服务端。所以当我们刚开始接触Flutter这一跨平台开发的时候首先可以先了解一下我们的Flutter UI的搭建。


为什么要学习Flutter?
why.jpg

Flutter是Google的开源UI框架,Flutter生成的程序可以直接在Google最新的系统Fuschia上运行, 也可以build成apkandroid上运行,或是生成ipaiOS运行。

一般传统的跨平台解决方案如RN,Weex等都是将程序员编写的代码自动转换成Native代码,最终渲染工作交还给系统,使用类HTML+JS的UI构建逻辑,但是最终会生成对应的自定义原生控件。
Flutter重写了一套跨平台的UI框架。渲染引擎依靠跨平台的Skia图形库来自己绘制。逻辑处理使用支持AOT的Dart语言,执行效率也比JS高很多。

  • 一. FlutterUI整体架构
    跨平台应用的框架,没有使用WebView或者系统平台自带的控件,使用自身的高性能渲染引擎(Skia)自绘,界面开发语言使用dart,底层渲染引擎使用C, C++
Flutter_image.png

一脸懵逼.png

我们可以看到最上层的MaterialCupertino组件,这两个什么玩意呢。
其实很简单Cupertino库比蒂诺是硅谷核心城市之一,也是苹果公司的总部,这就很容易理解了,Cupertino库就是iOS风格的组件。Material当然就是安卓主流风格的组件了。

从架构图可以看出,这两个组件库都是基于Widget实现的,可以看出这个Widget很基础,很重要啊。

Widget重点.jpeg

Flutter设计思想是一切皆是Widget,包括UI基础控件,布局方式,手势等都是widget。

常用的Widget.jpg

当我们新建一个Flutter工程之后,自带的demo示例如下图:

IMG_6758.JPG

看一下demo代码:MaterialApp包裹MyHomePage,MyHomePage包裹着Scaffold,Scaffold包裹着AppBarbody也可以增加bottomNavigationBar等。
AppDemo首页.jpg

MaterialApp继承StatefulWidget,放在Main 入口内函数中,初始化一个Material风格的App,一般配合Scaffold搭建AppUI架构。
Scaffold系统封装好的脚手架,提供了设置顶部导航栏,底部导航栏,侧边栏。
App UI架构搭建完成之后,看一下基本UI组件的使用和组合。

  • 二.下面介绍一下Widget类:
    abstract class Widget extends DiagnosticableTree{}我们由此可知Widget是一个不能实例化的抽象类。系统实现的它的两个子类分别为StatefulWidgetStatelessWidget
    StatelessWidget是无状态的控件,很简单,创建之后,被它包裹的Widget上边的数据就不在更新了,当然这个也不知绝对的,可以通过其他方法去更新StatelessWidget中Ui,这个以后再说。
    StatefulWidget 这个是有状态的,创建StatefulWidget 同时必须创建对应的State类,构建UI就放在了State类里边,并且可以调用setState(){}函数去从新使用新的状态构建UI。所以在实际开发中,我们要根据具体需求,选择对应的Widget。可以使用StatelessWidget完成的,尽可能的不要用StatefulWidget 。下面举个例子:
    image1.jpg

StatelessWidget:比如说在一些静态页面构建时,一旦UI构建之后便不需要再去更改UI,这时候可以使用StatelessWidget,比如一般App的关于我们页面。


demoLess.jpg

效果如下
demoLessUI.jpg

StatefulWidget :我们构建的是动态页面,比如展示的数据是服务器返回来的,或者用户进行交互,需要更新UI斩杀的数据。新建工程自带的demo如下:

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

效果如下:
demo2.gif
  • 三.常用控件的学习
    1.Text文本展示类

类似iOS的UILabel控件,系统提供了丰富的配置属性。

const Text(this.data, {
    Key key,
    this.style,//单独的style类,可以设置字体颜色,字体大小,字重,字间距等强大功能
    this.strutStyle,
    this.textAlign,//对齐方式
    this.textDirection,字体显示方向
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,//最大显示行数
    this.semanticsLabel,
  }) : assert(data != null),
       textSpan = null,
       super(key: key);

当然也同样支持不同样式的复杂文本的显示:

const Text.rich(this.textSpan, {
    Key key,
    this.style,
    this.strutStyle,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,
    this.semanticsLabel,
  }) : assert(textSpan != null),
       data = null,
       super(key: key);

富文本显示可以使用RichText。

2.Image

Image.asset:从asset资源文件获取图片;
Image.network:从网络获取图片;
Image.file:从本地资源文件回去图片;
Image.memory:从内存资源获取图片;

FadeInImage带有一个占位图的Image,比如网络较慢,或者网络图片请求失败的时候,会有一个占位图。
注意Image有一个Fit属性,用于设置图片内容适应方式,类似于iOS ImageView contenMode。

class GCImageTest extends StatefulWidget {
  @override
  _GCImageTestState createState() => _GCImageTestState();
}

class _GCImageTestState extends State<GCImageTest> {
  Widget buildImage (url,BoxFit fit){
    return Container(
      child: Image.network(url,fit:fit,width: 350,height: 100,),
    );
  }
  @override
  Widget build(BuildContext context) {
    return Column(
      mainAxisAlignment: MainAxisAlignment.start,
      crossAxisAlignment: CrossAxisAlignment.start,
      children: <Widget>[
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg",  BoxFit.fill),
        SizedBox(
          height: 10,
        ),
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg", BoxFit.cover),
        SizedBox(
          height: 10,
        ),
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg",  BoxFit.fitWidth),
        SizedBox(
          height: 10,
        ),
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg",  BoxFit.contain),
        SizedBox(
          height: 10,
        ),
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg",  BoxFit.fitHeight),
        SizedBox(
          height: 10,
        ),
        buildImage("https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2942065216,1819114681&fm=27&gp=0.jpg",  BoxFit.scaleDown),
        SizedBox(
          height: 10,
        ),

        FadeInImage.assetNetwork(
          image:"",
          placeholder:"lib/static/express_list_icon@2x.png",
        )

      ],
    );
  }
}
图片Demo.jpg
3.按钮

RaisedButton:凸起的按钮,周围有阴影,其实就是Android中的Material Design风格的Button ,继承自MaterialButton。
FlatButton :扁平化的按钮,继承自MaterialButton。
OutlineButton:带边框的按钮,继承自MaterialButton。
IconButton :图标按钮,继承自StatelessWidget。
这些按钮都可以通过设置shape来设置其圆角:

 class _GCButtonTestState extends State<GCButtonTest> {
  @override
  Widget build(BuildContext context) {
    return Container(
      width: MediaQuery.of(context).size.width,
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.start,
        children: <Widget>[
          RaisedButton(
            highlightColor: Colors.red,
            color: Colors.orange,
            child: Text("我是RaisedButton"),
            onPressed: () {},
          ),
          Container(
            width: MediaQuery.of(context).size.width,
            height: 80,
            padding: EdgeInsets.all(20),
            child: FlatButton(
              shape: const RoundedRectangleBorder(
                  side: BorderSide.none,
                  borderRadius: BorderRadius.all(Radius.circular(50))),
              highlightColor: Colors.red,
              color: Colors.orange,
              child: Text("我是FlatButton"),
              onPressed: () {},
            ),
          ),
          OutlineButton(
            shape: const RoundedRectangleBorder(
                side: BorderSide.none,
                borderRadius: BorderRadius.all(Radius.circular(20))),
            onPressed: () {},
            child: Text("我是OutlineButton"),
          ),
        ],
      ),
    );
  }
}

效果如下:


buttonDemo.jpg
4.TextField

用户输入控件:

Widget build(BuildContext context) {
    return KeyboardAvoider(
      focusPadding:20,
      autoScroll: true,
      child: Container(
          padding: EdgeInsets.only(top: 20),
          // color: Colors.green,
          width: MediaQuery.of(context).size.width,
          height:80,
          child: TextField(
          decoration: InputDecoration(
        //设置边框,占位符等
              border: OutlineInputBorder(
                borderSide: BorderSide(
                  width: 5,
                  color: Colors.grey,
                ),
                borderRadius: BorderRadius.all(Radius.circular(20)),
              ),
              contentPadding: EdgeInsets.all(10),
               icon: Icon(Icons.text_fields),
              hintText: "请输入你的用户名"),
            keyboardType:TextInputType.text,//键盘类型
            textInputAction: TextInputAction.done, //键盘 return 按钮设置
            maxLines: 1,
            autocorrect: true, //是否自动更正
            autofocus: false, //是否自动对焦
            // obscureText: true,  //是否是密码
            textAlign: TextAlign.center,
            focusNode: _contentFocusNode,//控制是否为第一响应, _contentFocusNode.unfocus();收起键盘,FocusScope.of(context).requestFocus(_contentFocusNode.unfocus)请求成为第一响应
            onEditingComplete: () {
              
            },
             controller: controller, //监听输入动作,可以在controller里设置默认值controller.text = "默认值";

            onSubmitted:(String text){
              print(text);
              _contentFocusNode.unfocus();
            } ,//提交信息
            onChanged: (String text){
              
            },
            onTap: (){
              
            },//文字输入有变化
          ),
        ),
    );
  }
}

效果如下图:
TextFieldDemo.jpg

注意的是在实际使用过程中TextField是不允许被键盘遮挡的,当TextField父节点时可滚动视图时,系统会自动上拉,不被键盘遮挡。但是如果TextField父节点不是滚动视图时候,可以使用第三方KeyboardAvoider进行包裹,这样输入时候也不会被键盘遮盖。controller也必须主动销毁

  • 四常用布局类
    1.0Flex布局

direction:布局方向可以设置,纵向和横向。
mainAxisAlignment:主轴对齐方向,如果横向布局,那么Y轴是主节点。如果纵向布局那么X轴是主轴。
crossAxisAlignment:副轴对齐方式。
children:顾名思义上边字节点集合。
这一点不理解的话,我举个🌰:

class GCFlexRowlayoutTest extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Flex(
      direction: Axis.horizontal,//布局方向
      mainAxisAlignment: MainAxisAlignment.start,//主轴对齐方向,因为是横向的布局,所以主轴是X方向
      // crossAxisAlignment: CrossAxisAlignment.end,//副轴对齐方式,底部对齐
      children: <Widget>[
        Flexible(
          flex: 1,//设置宽度比例
          child: Container(
            height: 100,
            color: Colors.red,
          ),
        ),
        Flexible(
          flex: 2,
          child: Container(
            height: 150,
            color: Colors.grey,
          ),
        ),
        Flexible(
          flex: 1,
          child: Container(
            height: 50,
            color: Colors.green,
          ),
        )

      ],
    );
  }
}

首先我先注释掉crossAxisAlignment:效果如下:

FlexDemo1.jpg

可见副轴(即这里的Y轴),默认对齐方向是居中对齐。
下面我设置:crossAxisAlignment: CrossAxisAlignment.end
效果如下:
FlexDemo2.jpg

此时设置的为Y轴的end方向对齐。其它对齐方式,可以自行试用一下。

1.0.1Row布局类

行布局类,是Flex的子类,基本功能同Flex,布局方向为横向布局

1.0.2Column布局类

列布局类,是Flex的子类,基本功能同Flex,布局方向为纵向布局

实际开发中,我们都是比较长使用这两者嵌套进行复杂UI
构建。

2.Stack层叠布局

如下图效果:


stackDemo.jpg

代码实现如下:

Widget build(BuildContext context) {
    return Center(
      child: Container(
        height: 100,
        width: 100,
        child: Stack(
          children: <Widget>[
            ClipOval(
              child: Image.asset(
                "lib/static/express_list_icon@2x.png",
                fit: BoxFit.fill,
              ),
            ),
            Positioned(
              left: 25,
              right: 10,
              top: 10,
              child: Text("添加水印"),
            ),
            Positioned(
              right: 5,
              top: 10,
              child: ClipOval(
                child: Container(
                  width: 10,
                  height:10,
                  color: Colors.red,
                ),
              ),
            ),
          ],
        ),
      ),
    );

Stack配合Positioned,FractionalOffset进行定位布局。

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

推荐阅读更多精彩内容