性能優(yōu)化demo

Future<String> fetchData2(String input) async {
  await Future.delayed(const Duration(seconds: 5));
  return 'Hello, $input!';
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int index = 0;
  StreamController<int> _counterController = StreamController<int>();
  int _counter = 0;

  void _incrementCounter() {
    if (index == 0) {
      index = 1;
    } else {
      index = 0;
    }

    _counter++;
    _counterController.sink.add(_counter);
    setState(() {});
  }

  @override
  void dispose() {
    _counterController.close();
    super.dispose();
  }

  Future<String> fetchData() async {
    return Future.delayed(const Duration(seconds: 3), () => 'Hello, world!');
  }

  Future<List<String>> fetchData3() async {
    List<Future<String>> futures = [
      Future.delayed(const Duration(seconds: 1), () => 'Hello'),
      Future.delayed(const Duration(seconds: 2), () => 'World!!!'),
    ];
    List<String> results = await Future.wait(futures);
    return results;
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          children: [
            IndexedStackWidget(
              index: index,
            ),
            // 異步
            FutureBuilder(
              future: fetchData(),
              builder: (context, snapshot) {
                if (snapshot.connectionState == ConnectionState.done) {
                  return Text(snapshot.data ?? '');
                } else {
                  return const CircularProgressIndicator();
                }
              },
            ),
            // isolate獲取數(shù)據(jù)
            FutureBuilder(
              future: compute(fetchData2, 'world'),
              builder: (context, snapshot) {
                if (snapshot.connectionState == ConnectionState.done) {
                  return Text(snapshot.data ?? '');
                } else {
                  return const CircularProgressIndicator();
                }
              },
            ),
            // stream 流顯示
            StreamBuilder<int>(
              stream: _counterController.stream,
              builder: (context, snapshot) {
                if (snapshot.hasData) {
                  return Text('Counter: ${snapshot.data}');
                } else {
                  return const CircularProgressIndicator();
                }
              },
            ),

            /// 多異步操作
            FutureBuilder(
              future: fetchData3(),
              builder: (context, snapshot) {
                if (snapshot.connectionState == ConnectionState.done) {
                  if (snapshot.hasData) {
                    return Text(snapshot.data?.join(' ') ?? '');
                  } else if (snapshot.hasError) {
                    return Text('Error: ${snapshot.error}');
                  } else {
                    return const Text('No data');
                  }
                } else {
                  return const CircularProgressIndicator();
                }
              },
            )
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}

class FlexDemo extends StatelessWidget {
  const FlexDemo({super.key});

  @override
  Widget build(BuildContext context) {
    return Flex(
      direction: Axis.horizontal,
      children: [
        Expanded(
          child: Container(
            height: 100,
            color: Colors.red,
          ),
        ),
        Expanded(
          child: Container(
            height: 100,
            color: Colors.blue,
          ),
        ),
      ],
    );
  }
}

class MyLayoutDelegate extends MultiChildLayoutDelegate {
  MyLayoutDelegate({this.position});

  final Offset? position;

  @override
  void performLayout(Size size) {
    // `size` is the size of the `CustomMultiChildLayout` itself.

    Size leadingSize = Size
        .zero; // If there is no widget with id `1`, the size will remain at zero.
    // Remember that `1` here can be any **id** - you specify them using LayoutId.
    if (hasChild(1)) {
      leadingSize = layoutChild(
        1, // The id once again.
        BoxConstraints.tightFor(
            height: size
                .height), // This just says that the child cannot be bigger than the whole layout.
      );
      // No need to position this child if we want to have it at Offset(0, 0).
    }

    if (hasChild(2)) {
      final secondSize = layoutChild(
        2,
        BoxConstraints.tightFor(width: size.width / 2),
      );

      positionChild(
        2,
        Offset(
          leadingSize.width, // This will place child 2 to the right of child 1.
          size.height / 2 -
              secondSize.height / 2, // Centers the second child vertically.
        ),
      );
    }
  }

  @override
  bool shouldRelayout(MyLayoutDelegate oldDelegate) =>
      oldDelegate.position != position;
}

class MultiChild extends StatelessWidget {
  const MultiChild({super.key});

  @override
  Widget build(BuildContext context) {
    return CustomMultiChildLayout(
      delegate: MyLayoutDelegate(),
      children: [
        LayoutId(
          id: 1, // The id can be anything, i.e. any Object, also an enum value.
          child: const Text(
              'Widget one'), // This is the widget you actually want to show.
        ),
        LayoutId(
          id: 2, // You will need to refer to that id when laying out your children.
          child: const Card(
            child: Padding(
              padding: EdgeInsets.all(8.0),
              child: Text('Widget two'),
            ),
          ),
        ),
      ],
    );
  }
}

class IndexedStackWidget extends StatelessWidget {
  final int index;
  const IndexedStackWidget({super.key, required this.index});

  @override
  Widget build(BuildContext context) {
    return IndexedStack(
      index: index,
      children: [
        Container(
          width: 100,
          height: 100,
          color: Colors.red,
        ),
        Container(
          width: 100,
          height: 100,
          color: Colors.blue,
        ),
      ],
    );
  }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市忧风,隨后出現(xiàn)的幾起案子默色,更是在濱河造成了極大的恐慌,老刑警劉巖狮腿,帶你破解...
    沈念sama閱讀 218,204評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件腿宰,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡缘厢,警方通過(guò)查閱死者的電腦和手機(jī)吃度,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,091評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)贴硫,“玉大人椿每,你說(shuō)我怎么就攤上這事伊者。” “怎么了间护?”我有些...
    開(kāi)封第一講書(shū)人閱讀 164,548評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵亦渗,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我汁尺,道長(zhǎng)法精,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,657評(píng)論 1 293
  • 正文 為了忘掉前任痴突,我火速辦了婚禮搂蜓,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘辽装。我一直安慰自己帮碰,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,689評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布如迟。 她就那樣靜靜地躺著,像睡著了一般攻走。 火紅的嫁衣襯著肌膚如雪殷勘。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,554評(píng)論 1 305
  • 那天昔搂,我揣著相機(jī)與錄音玲销,去河邊找鬼。 笑死摘符,一個(gè)胖子當(dāng)著我的面吹牛贤斜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播逛裤,決...
    沈念sama閱讀 40,302評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼瘩绒,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了带族?” 一聲冷哼從身側(cè)響起锁荔,我...
    開(kāi)封第一講書(shū)人閱讀 39,216評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎蝙砌,沒(méi)想到半個(gè)月后阳堕,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,661評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡择克,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,851評(píng)論 3 336
  • 正文 我和宋清朗相戀三年恬总,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片肚邢。...
    茶點(diǎn)故事閱讀 39,977評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡壹堰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情缀旁,我是刑警寧澤记劈,帶...
    沈念sama閱讀 35,697評(píng)論 5 347
  • 正文 年R本政府宣布,位于F島的核電站并巍,受9級(jí)特大地震影響目木,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜懊渡,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,306評(píng)論 3 330
  • 文/蒙蒙 一刽射、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧剃执,春花似錦誓禁、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,898評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至怒见,卻和暖如春俗慈,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背遣耍。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,019評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工闺阱, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人舵变。 一個(gè)月前我還...
    沈念sama閱讀 48,138評(píng)論 3 370
  • 正文 我出身青樓酣溃,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親纪隙。 傳聞我的和親對(duì)象是個(gè)殘疾皇子赊豌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,927評(píng)論 2 355

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