Flutter入門一

1.Container

1. Container設(shè)置圓角
Container(
        width: widget.width,
        height: widget.height,
        decoration: BoxDecoration(
          color: widget.backgroundColor,
          border: Border.all(
            color: widget.borderColor ??  widget.backgroundColor,
            width: widget.borderWidth,
          ), borderRadius: BorderRadius.all(Radius.circular(4.0))
        ),
        child: _getChild(),
      ),
ClipOval(
   child:Image.network(url,width:100,height:100,fit:BoxFit.cover)
)
2. 給 Container 某一角設(shè)置圓角
Container(
   decoration: BoxDecoration(
     borderRadius: BorderRadius.only(
       topLeft: Radius.circular(30),
       bottomRight: Radius.circular(30),
     ),
  ),
),

2. CustomScrollView組件_Sliver組件

普通ListView無法嵌套ListView. 那么我們引入了CustomScrollView。
CustomScrollView是可以使用Sliver來自定義滾動模型(效果)的組件刘陶。它可以包含多種滾動模型胳赌,舉個例子,假設(shè)有一個頁面匙隔,頂部需要一個GridView疑苫,底部需要一個ListView,而要求整個頁面的滑動效果是統(tǒng)一的,即它們看起來是一個整體捍掺。如果使用GridView+ListView來實(shí)現(xiàn)的話撼短,就不能保證一致的滑動效果,因?yàn)樗鼈兊臐L動效果是分離的挺勿,所以這時就需要一個"膠水"阔加,把這些彼此獨(dú)立的可滾動組件"粘"起來,而CustomScrollView的功能就相當(dāng)于“膠水”满钟。

Sliver有細(xì)片、薄片之意胳喷,在Flutter中湃番,Sliver通常指可滾動組件子元素(就像一個個薄片一樣)。但是在CustomScrollView中吭露,需要粘起來的可滾動組件就是CustomScrollView的Sliver了吠撮,如果直接將ListView、GridView作為CustomScrollView是不行的讲竿,因?yàn)樗鼈儽旧硎强蓾L動組件而并不是Sliver泥兰!因此,為了能讓可滾動組件能和CustomScrollView配合使用题禀,F(xiàn)lutter提供了一些可滾動組件的Sliver版鞋诗,如SliverList、SliverGrid等迈嘹。實(shí)際上Sliver版的可滾動組件和非Sliver版的可滾動組件最大的區(qū)別就是前者不包含滾動模型(自身不能再滾動)削彬,而后者包含滾動模型 ,也正因如此秀仲,CustomScrollView才可以將多個Sliver"粘"在一起融痛,這些Sliver共用CustomScrollView的Scrollable,所以最終才實(shí)現(xiàn)了統(tǒng)一的滑動效果神僵。

Sliver名稱 功能 對應(yīng)組件
SliverList 列表 ListView
SliverFixedExtentList 項目高度固定列表 ListView 指定itemExtent
SliverPrototypeExtentList 根據(jù)原型生成高度固定的列表 ListView 指定prototypeItem
SliverAnimatedList 添加/刪除列表項時執(zhí)行動畫 AnimatedList

http://www.reibang.com/p/d833103ac4e7

3. column中嵌套GridView 報一下錯誤

完整報錯信息:

RenderFlex children have non-zero flex but incoming height constraints are unbounded.

When a column is in a parent that does not provide a finite height constraint, for example if it is in a vertical scrollable, it will try to shrink-wrap its children along the vertical axis. Setting a flex on a child (e.g. using Expanded) indicates that the child is to expand to fill the remaining space in the vertical direction.
These two directives are mutually exclusive. If a parent is to shrink-wrap its child, the child cannot simultaneously expand to fit its parent.

解決辦法:

Column(
                crossAxisAlignment: CrossAxisAlignment.start,
                mainAxisSize: MainAxisSize.min,
                children: [
                  if (needGradeTag)
                    Padding(
                      padding: EdgeInsets.fromLTRB(15, 15, 0, 0),
                      child: Text(
                        "您的年級",
                        style: TextStyle(
                          color: Color(0xFF19191B),
                          fontSize: 17,
                        ),
                      ),
                    ),
                  Padding(
                    padding: EdgeInsets.fromLTRB(15, 15, 0, 0),
                    child: UnderlineText(
                      content: groupData.gradeTypeName,
                      textColor: Color(0xFF19191B),
                      textSize: 15,
                    ),
                  ),
                  GridView.builder(
                    shrinkWrap: true,
                    physics: NeverScrollableScrollPhysics(),
                    gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
                        crossAxisCount: 3, //橫軸三個子widget
                        childAspectRatio: screenWidth / 3.0 / 38.0,
                        mainAxisSpacing: 4, crossAxisSpacing: 4
                    ),
                    itemBuilder: (context, index) {
                      List<GradeVos> GradeList = groupData.gradeVos;
                      GradeVos gradeVos = GradeList[index];
                      return  Container(
                        color: Colors.red,
                        child: Text("哈哈"),
                      );
                    },
                    itemCount: groupData.gradeVos.length,
                  ),

                ],
              ),

column中添加 mainAxisSize: MainAxisSize.min,

4. 頁面保存狀態(tài)方法

class _SchoolState extends State<School> with AutomaticKeepAliveClientMixin 

然后重寫

@override
  bool get wantKeepAlive => true;

5. 設(shè)置圖片

1.image fit字段設(shè)置
Image.network("https://img.com",fit:BoxFit.fill)
BoxFit.fill:充滿控件
BoxFit.cover:剪裁充滿空間
BoxFit.fitWidth:寬度填充
BoxFit.fitHeight:高度填充
2. 平鋪

repeat: ImageRepeat.repeatX x平鋪
repeat: ImageRepeat.repeatY y平鋪
repeat: ImageRepeat.repeat xy都平鋪

6. card

shep: RounedRectangleBorder(
borderRadius:borderRadius.circle(10);
)

7. CirclrAvatar

CircleAvatar(
)

8. 按鈕

ElevatedButton
各種按鈕.png

9. Wrap

wrap

10. BottomNavgationBar

BottomNavgationBar

11. TabBar

TabBar

12. flutter設(shè)置狀態(tài)欄顏色

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

///狀態(tài)欄顏色
class StatusBarDemoPage extends StatefulWidget {
  const StatusBarDemoPage({super.key});

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

class _StatusBarDemoPageState extends State<StatusBarDemoPage> {
  bool customSystemUIOverlayStyle = false;

  @override
  Widget build(BuildContext context) {
    var body = getBody();
    ///如果手動設(shè)置過狀態(tài)欄雁刷,就不可以用 AnnotatedRegion ,會影響
    if (customSystemUIOverlayStyle) {
      return body;
    }
    ///如果沒有手動設(shè)置過狀態(tài)欄保礼,就可以用 AnnotatedRegion 直接嵌套顯示
    return AnnotatedRegion<SystemUiOverlayStyle>(
      value: SystemUiOverlayStyle.dark,
      child: body,
    );
  }

  getBody() {
    return Scaffold(
      appBar: const ImageAppBar(),
      body: Center(
        child: Row(
          mainAxisAlignment: MainAxisAlignment.center,
          crossAxisAlignment: CrossAxisAlignment.center,
          children: <Widget>[
            TextButton(
              onPressed: () {
                ///手動修改
                setState(() {
                  customSystemUIOverlayStyle = true;
                });
                SystemChrome.setSystemUIOverlayStyle(
                    SystemUiOverlayStyle.light);
              },
              style: ButtonStyle(
                backgroundColor: ButtonStyleButton.allOrNull<Color>(
                  Colors.yellowAccent,
                ),
              ),
              child: const Text("Light"),
            ),
            const SizedBox(
              width: 10,
            ),
            TextButton(
              onPressed: () {
                setState(() {
                  customSystemUIOverlayStyle = true;
                });
                SystemChrome.setSystemUIOverlayStyle(
                    SystemUiOverlayStyle.dark);
              },
              style: ButtonStyle(
                backgroundColor: ButtonStyleButton.allOrNull<Color>(
                  Colors.greenAccent,
                ),
              ),
              child: const Text("Dart"),
            ),
          ],
        ),
      ),
    );
  }
}

///自定義 PreferredSizeWidget 做 AppBar
class ImageAppBar extends StatelessWidget implements PreferredSizeWidget {
  const ImageAppBar({super.key});

  @override
  Widget build(BuildContext context) {
    return Stack(
      children: <Widget>[
        Image.asset(
          "static/gsy_cat.png",
          fit: BoxFit.cover,
          width: MediaQuery.sizeOf(context).width,
          height: kToolbarHeight * 3,
        ),
        SafeArea(
          child: IconButton(
              color: Colors.white,
              icon: const Icon(Icons.arrow_back_ios),
              onPressed: () {
                Navigator.of(context).pop();
              }),
        )
      ],
    );
  }

  @override
  Size get preferredSize => const Size.fromHeight(kToolbarHeight * 3);
}

13. MediaQuery.viewInsetsOf(context).bottom 是用來獲取當(dāng)前應(yīng)用的底部視圖的內(nèi)邊距

viewInsets : 被系統(tǒng)用戶界面完全遮擋的部分大小沛励,簡單來說就是鍵盤高度

14. 返回到根目錄

Get.until((route) => route.settings.name == '/');

flutter 實(shí)現(xiàn)ios presnet效果

Get.to( widget, transition: Transition.downToUp);

15. 漸變色

import 'package:flutter/material.dart';
 
void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Container(
            width: 200.0,
            height: 200.0,
            decoration: BoxDecoration(
              gradient: LinearGradient(
                begin: Alignment.centerLeft,
                end: Alignment.centerRight,
                colors: [
                  Colors.red,
                  Colors.blue,
                ],
              ),
            ),
          ),
        ),
      ),
    );
  }
}

16. NestedScrollView 的 headerSliverBuilder

headerSliverBuilder 中返回的數(shù)組中的widget只要是SliverToBoxAdapter包裹的就行

17. ListView去掉安全留白的方法

方法一:

ListView.builder(
      padding: EdgeInsets.zero,
      itemCount: 20,)

方法二:

MediaQuery.removePadding(context:context, removeTop: true,removeBottom: true, chail:)

18. 讓某個widget在安全區(qū)域內(nèi)

 SafeArea(
              child: Container(
            height: 44,
            color: Colors.blue,
          ))

19. 關(guān)于ExpansionTile

可通過shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(0)),將展開邊沿的黑線去掉

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市氓英,隨后出現(xiàn)的幾起案子侯勉,更是在濱河造成了極大的恐慌,老刑警劉巖铝阐,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件址貌,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)练对,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門遍蟋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人螟凭,你說我怎么就攤上這事虚青。” “怎么了螺男?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵棒厘,是天一觀的道長。 經(jīng)常有香客問我下隧,道長奢人,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任淆院,我火速辦了婚禮何乎,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘土辩。我一直安慰自己支救,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布拷淘。 她就那樣靜靜地躺著各墨,像睡著了一般。 火紅的嫁衣襯著肌膚如雪启涯。 梳的紋絲不亂的頭發(fā)上欲主,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機(jī)與錄音逝嚎,去河邊找鬼扁瓢。 笑死,一個胖子當(dāng)著我的面吹牛补君,可吹牛的內(nèi)容都是我干的引几。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼挽铁,長吁一口氣:“原來是場噩夢啊……” “哼伟桅!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起叽掘,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤楣铁,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后更扁,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體盖腕,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡赫冬,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了溃列。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片劲厌。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖听隐,靈堂內(nèi)的尸體忽然破棺而出补鼻,到底是詐尸還是另有隱情,我是刑警寧澤雅任,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布风范,位于F島的核電站,受9級特大地震影響沪么,放射性物質(zhì)發(fā)生泄漏乌企。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一成玫、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧拳喻,春花似錦哭当、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至亚亲,卻和暖如春彻采,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背捌归。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工肛响, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人惜索。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓特笋,卻偏偏與公主長得像,于是被迫代替她去往敵國和親巾兆。 傳聞我的和親對象是個殘疾皇子猎物,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容