Flutter基礎(chǔ)組件

Text基本用法和外邊框

  import 'package:flutter/material.dart';

//基本組件的使用 1.Text 2.Container
void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "Text widget",
      home: Scaffold(
        body: Center(
          child: Container(
            child: Text(
            "hello lyj 今天的天氣不錯,我要出去玩呀呀峰尝。但是我要學(xué)習(xí),我愛學(xué)習(xí)。學(xué)習(xí)使我快樂均驶,今天開始學(xué)習(xí)flutters",
            textAlign: TextAlign.center,
            // maxLines: 1,
            // overflow: TextOverflow.ellipsis,
            style:TextStyle(
              color: Color.fromRGBO(28, 29, 120, 1),
              fontSize: 14,
              decoration: TextDecoration.underline,
              decorationStyle: TextDecorationStyle.solid//實線
              ) ,
            ),
            alignment: Alignment.center,
            width: 500,
            height: 100,
            // color: Colors.red,
            // padding: const EdgeInsets.all(10.0),
            padding: const EdgeInsets.fromLTRB(10, 5, 5, 10),//內(nèi)編劇
            margin: const EdgeInsets.all(10.0),//外邊距
            decoration: BoxDecoration(
              gradient: const LinearGradient(
                colors: [Colors.lightBlue,Colors.greenAccent,Colors.purple]
              ),
              border: Border.all(color: Colors.red,width: 2),
              borderRadius: BorderRadius.circular(50)
            ), 
          )
        ),
      ),
    );
  }
}

圖片的用法

import 'package:flutter/material.dart';

//3.iamge
void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "Text widget",
      home: Scaffold(
        body: Center(
            child: ListView(
          children: <Widget>[
            Container(
              child: Image.network(
                "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1555747523962&di=a1c0b1b4f8561a79e5dcb4a7409b022c&imgtype=0&src=http%3A%2F%2Fp0.ssl.qhimg.com%2Ft01c3f5bf72e7d1ac67.png",
                scale: 1.0,
                fit: BoxFit.contain,
                color: Colors.greenAccent,
                colorBlendMode: BlendMode.darken,
                repeat: ImageRepeat.repeatY,
              ),
              // alignment: Alignment.center,
              width: 500,
              height: 400,
              color: Colors.red,
              // padding: const EdgeInsets.all(10.0),
            ),
             Container(
              child: Image.asset(
                'images/Apr-27-2019 16-03-03.gif',
                scale: 1.0,
              ),
              // padding: const EdgeInsets.all(10.0),
            ),
          ],
        )),
      ),
    );
  }
}

官網(wǎng)例子

包含橫向排列縱向排列郑口,圖片

import 'package:flutter/material.dart';

//官方布局練習(xí)
void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: '官網(wǎng)的布局',
        home: MyHomeScreen(),
    );
  }
}

//第二列的布局
class SecondLine extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      color: Colors.yellow,
      padding: const EdgeInsets.all(15),
      child: Row(//橫向排列
        children: <Widget>[
          Expanded(
            child: Column(//豎排列
              crossAxisAlignment: CrossAxisAlignment.start,
              children: <Widget>[
                Container(
                  padding: const EdgeInsets.only(bottom: 8),
                  child: Text('我是個安靜的標(biāo)題',style: TextStyle(fontWeight: FontWeight.bold,fontSize: 18,color: Colors.black),),
                ),
                Text('我是詳情噗啦啦啦,娃哈哈',style: TextStyle(fontWeight: FontWeight.bold,color: Colors.grey[500]),),
              ],
            ),
          ),

          Icon(Icons.star,color: Colors.red[500],),
          Container(child: Text('100'),padding: const EdgeInsets.only(left: 10),),
        ],
      ),
    );
  }
}

class ThirdLine extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    //
    MaterialButton buildButtonColumn1(IconData icon, String label){
      Color color = Theme.of(context).primaryColor;
      return MaterialButton(
        color: Colors.red,
        onPressed: () => {print('$label被點擊')},
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Icon(icon,color:color),
            Container(
              margin: const EdgeInsets.only(top:8),
              child: new Text(label,
                  style: TextStyle(
                    fontSize: 12.0,
                    fontWeight: FontWeight.w400,
                    color: color,
                  )),
            ),
          ],

        ),
      );
    }

    return Container(
      padding: const EdgeInsets.fromLTRB(40, 10, 40, 10),
      child: Row(
        mainAxisAlignment: MainAxisAlignment.spaceEvenly,
        children: <Widget>[
          Expanded(
            child: Container(
              child: buildButtonColumn1(Icons.call, 'Call'),
            ),
          ),
          Expanded(
            child: Container(
              // color: Colors.yellow,
              child: buildButtonColumn1(Icons.near_me, 'ROUTE'),
            ),
          ),
          Expanded(
            child: Container(
              // color: Colors.pink,
              child: buildButtonColumn1(Icons.share, 'SHARE'),
            ),
          )
        ],
      ),
    );

  }
}

class FourLine extends StatelessWidget {
  @override
  Widget build(BuildContext context) {

    return Container(
      padding: const EdgeInsets.all(32),
      child: Text(
        '這就完成簡單的靜態(tài)頁面這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧'
            '這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧'
            '這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧'
            '這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧這就完成簡單的靜態(tài)頁面吧吧',
        style:TextStyle(fontSize: 12.0, fontWeight: FontWeight.normal, color: Colors.grey)
      ),

    );
  }

}


class MyHomeScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context){
    return Scaffold(//基本頁面組件
      appBar: AppBar(
        title: Text('首頁'),
      ),
      body: ListView(
        children: <Widget>[
          Image.asset('images/lake.jpg'),
          SecondLine(),
          ThirdLine(),
          FourLine(),
        ],
      ),
    );
  }
}

參考鏈接

Flutter常用組件學(xué)習(xí)以及官方Demo
Flutter開發(fā)之基礎(chǔ)組件

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市各淀,隨后出現(xiàn)的幾起案子懒鉴,更是在濱河造成了極大的恐慌,老刑警劉巖碎浇,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件临谱,死亡現(xiàn)場離奇詭異,居然都是意外死亡奴璃,警方通過查閱死者的電腦和手機(jī)悉默,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來苟穆,“玉大人抄课,你說我怎么就攤上這事■茫” “怎么了跟磨?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長攒盈。 經(jīng)常有香客問我抵拘,道長,這世上最難降的妖魔是什么型豁? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任僵蛛,我火速辦了婚禮,結(jié)果婚禮上偷遗,老公的妹妹穿的比我還像新娘墩瞳。我一直安慰自己,他們只是感情好氏豌,可當(dāng)我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布喉酌。 她就那樣靜靜地躺著,像睡著了一般泵喘。 火紅的嫁衣襯著肌膚如雪泪电。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天纪铺,我揣著相機(jī)與錄音相速,去河邊找鬼。 笑死鲜锚,一個胖子當(dāng)著我的面吹牛突诬,可吹牛的內(nèi)容都是我干的苫拍。 我是一名探鬼主播,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼旺隙,長吁一口氣:“原來是場噩夢啊……” “哼绒极!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蔬捷,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤垄提,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后周拐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體铡俐,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年妥粟,在試婚紗的時候發(fā)現(xiàn)自己被綠了审丘。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡罕容,死狀恐怖备恤,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情锦秒,我是刑警寧澤露泊,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站旅择,受9級特大地震影響惭笑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜生真,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一沉噩、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧柱蟀,春花似錦川蒙、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至术瓮,卻和暖如春康聂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背胞四。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工恬汁, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人辜伟。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓氓侧,卻偏偏與公主長得像脊另,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子甘苍,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,877評論 2 345