Flutter状态标识管理插件state_beacon_core的使用

发布于 1周前 作者 yuanlaile 来自 Flutter

Flutter状态标识管理插件state_beacon_core的使用

概述

state_beacon_core 是一个用于Dart和Flutter的状态管理解决方案,基于信号(signal)实现。它利用了Milo Mighdoll创建的节点着色技术,并在SolidJS和reactively等框架中广泛应用。

安装

通过以下命令安装 state_beacon 插件:

dart pub add state_beacon

使用方法

基本用法

可写信标 (Writable Beacon)

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

final name = Beacon.writable("Bob");

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

  @override
  Widget build(BuildContext context) {
    // 当name变化时重建Widget
    return Text(name.watch(context));
  }
}

使用异步函数

final counter = Beacon.writable(0);

// 当counter变化时重新计算futureCounter
final futureCounter = Beacon.future(() async {
  final count = counter.value;
  return await fetchData(count);
});

Future<String> fetchData(int count) async {
  await Future.delayed(Duration(seconds: count));
  return '$count second has passed.';
}

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

  @override
  Widget build(BuildContext context) {
    return switch (futureCounter.watch(context)) {
      AsyncData<String>(value: final v) => Text(v),
      AsyncError(error: final e) => Text('$e'),
      _ => const CircularProgressIndicator(),
    };
  }
}

示例代码

下面是一个完整的示例,展示了如何使用 state_beacon_core 来管理状态和响应状态变化:

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  final name = Beacon.writable('Bob');
  final age = Beacon.writable(20);
  final college = Beacon.writable('MIT');

  @override
  void initState() {
    super.initState();

    Beacon.effect(() {
      var msg = '${name.value} is ${age.value} years old';

      if (age.value > 21) {
        msg += ' and can go to ${college.value}';
      }
      print(msg);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('State Beacon Core Example'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            TextField(
              onChanged: (value) {
                name.value = value;
              },
              decoration: InputDecoration(labelText: 'Name'),
            ),
            TextField(
              onChanged: (value) {
                age.value = int.parse(value);
              },
              decoration: InputDecoration(labelText: 'Age'),
            ),
            TextField(
              onChanged: (value) {
                college.value = value;
              },
              decoration: InputDecoration(labelText: 'College'),
            ),
          ],
        ),
      ),
    );
  }
}

在这个示例中,我们定义了三个可写信标:nameagecollege,并在 _MyHomePageStateinitState 方法中添加了一个效应 (effect),当这些信标的值发生变化时,会触发打印输出相应的消息。

其他功能

异步信标 (Future Beacon)

final futureCounter = Beacon.future(() async {
  final count = counter.value;
  await Future.delayed(Duration(seconds: count));
  return '$count second has passed.';
});

流信标 (Stream Beacon)

var myStream = Stream.periodic(Duration(seconds: 1), (i) => i);
var myBeacon = Beacon.stream(() => myStream);

myBeacon.subscribe((value) {
  print(value); // Outputs AsyncLoading(),AsyncData(0),AsyncData(1),AsyncData(2),...
});

缓冲信标 (Buffered Beacon)

var countBeacon = Beacon.bufferedCount<int>(3);

countBeacon.subscribe((values) {
  print(values);
});

countBeacon.add(1);
countBeacon.add(2);
countBeacon.add(3); // Triggers update and prints [1, 2, 3]

调试与日志记录

可以通过设置全局的 BeaconObserver 实例来监听所有信标的创建、更新和销毁事件:

BeaconObserver.instance = LoggingObserver(); // 或者 BeaconObserver.useLogging()

var a = Beacon.writable(10, name: 'a');
var b = Beacon.writable(20, name: 'b');
var c = Beacon.derived(() => a() * b(), name: 'c');

Beacon.effect(
  () {
    print('c: ${c.value}');
  },
  name: 'printEffect',
);

更多关于Flutter状态标识管理插件state_beacon_core的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter状态标识管理插件state_beacon_core的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是一个关于如何在Flutter项目中使用state_beacon_core插件的示例代码。这个插件主要用于状态标识管理,可以帮助开发者在复杂的应用中高效地管理组件状态。

首先,确保你已经将state_beacon_core添加到你的pubspec.yaml文件中:

dependencies:
  flutter:
    sdk: flutter
  state_beacon_core: ^最新版本号  # 请替换为实际的最新版本号

然后运行flutter pub get来安装插件。

接下来,让我们编写一个示例代码来展示如何使用state_beacon_core

1. 创建一个Beacon类

首先,我们需要创建一个自定义的Beacon类,用于标识和管理状态。

// beacon.dart
import 'package:state_beacon_core/state_beacon_core.dart';

class MyBeacon extends Beacon<String> {
  MyBeacon() : super('initial');

  void changeState(String newState) {
    this.state = newState;
  }
}

2. 在Widget中使用Beacon

接下来,我们在一个Flutter Widget中使用这个Beacon来管理状态。

// main.dart
import 'package:flutter/material.dart';
import 'beacon.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  final MyBeacon beacon = MyBeacon();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('State Beacon Core Example'),
        ),
        body: BeaconObserver<String>(
          beacon: beacon,
          builder: (context, state) {
            return Center(
              child: Text('Current State: $state'),
            );
          },
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: () {
            // Change the state to a new value
            beacon.changeState('new_state');
          },
          tooltip: 'Change State',
          child: Icon(Icons.arrow_forward),
        ),
      ),
    );
  }
}

3. 运行应用

现在,你可以运行你的Flutter应用。当你点击浮动按钮时,Beacon的状态会改变,并且UI会相应地更新,显示新的状态。

关键点解释

  1. Beacon类MyBeacon继承自Beacon<String>,并初始化状态为'initial'。你可以根据需要更改状态类型。
  2. BeaconObserverBeaconObserver是一个Widget,它观察一个Beacon的状态变化,并在状态变化时重新构建其子Widget。
  3. 状态更新:通过调用beacon.changeState('new_state')来更新Beacon的状态,UI会自动刷新以反映新的状态。

这个示例展示了如何使用state_beacon_core插件来管理Flutter应用中的状态。通过定义自定义的Beacon类和使用BeaconObserver,你可以轻松地在组件之间共享和响应状态变化。

回到顶部