Flutter功能通知插件feature_notifier的使用

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

Flutter功能通知插件feature_notifier的使用

1. Flutter功能通知插件feature_notifier的介绍

feature_notifier 是是一个用于在应用程序更新后通知用户新功能的Flutter插件。它提供了多种类型的自定义通知,如横条通知、卡片通知、警报对话框和底部模态弹窗,并且可以根据用户的交互来定制这些通知的状态。

2. 示例代码

下面是一个完整的示例代码,展示了如何使用feature_notifier插件创建各种类型的自定义通知。

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

void main() async {
  await FeatureNotifier.init();
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Feature Notifier Test',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: "Feature Notifier test"),
    );
  }
}

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  void _reset() {
    setState(() {
      FeatureNotifier.persistAll();
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Padding(
                padding: const EdgeInsets.all(20 ),
                child: FeatureCardNotifier(
                  title: "Testing this out",
                  hasButton: true,
                  description:
                      'You can now show items without inviting friends!',
                  featureKey: 1,
                  onClose: () {},
                  onTapCard: () {},
                  showIcon: true,
                  onTapButton: () {},
                )),
            Padding(
                padding: const EdgeInsets.all( 20 ),
                child: FeatureBarNotifier(
                  title:
                      "Testing this out You have pushed the button this many times:",
                  featureKey: 22,
                  onClose: () {},
                  onTapCard: () {},
                  showIcon: true,
                  // icon: Text("dog"),
                )),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _reset,
        tooltip: 'Persist all features',
        child: const Icon(Icons.clear),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

3. 初始化

main()函数中初始化FeatureNotifier并等待其完成:

void main() async {
  await FeatureNotifier.init();
  runApp(const MyApp());
}

4. 不同类型的Feature Notifiers

feature_notifier 提供了四种独特的自定义Feature Notifiers:

  • 1. 横条通知 (Bar Notifier)
FeatureBarNotifier(
  title: "We just released a new feature!",
  featureKey: 22,
  onClose: () {},
  onTapCard: () {},
  showIcon: true,
)
  • 2. 卡片通知 (Card Notifier)
FeatureCardNotifier(
  title: "We just released a new feature!",
  description: "Checkout the nwq feature that we just released and make.",
  featureKey: 22,
  onClose: () {},
  onTapCard: () {},
  showIcon: true,
  hasButton: true,
)
  • 3. 警报对话框 (Alert Dialog Notifier)
FeatureAlertNotifier.notify(
  context,
  title: "We just released a new feature!",
  description: "Checkout the nwq feature that we just released and make.",
  onClose: () {},
  featureKey: 3,
  hasButton: true,
);
  • 4. 底部模态弹窗 (Bottom Modal Sheet Notifier)
FeatureBottomModalSheetNotifier.notify(
  context,
  title: "We just released a new feature!",
  description: "Checkout the nwq feature that we just released and make.",
  onClose: () {},
  featureKey: 3,
  hasButton: true,
);

5. 自定义Body

从版本1.0.7开始,FeatureAlertNotifierFeatureBottomModalSheetNotifier 可以通过body参数添加自定义内容,以提高展示灵活性。

FeatureBottomModalSheetNotifier.notify(
  context,
  title: "Alert Notifier",
  description: "Modal sheet is a good way to display a feature",
  onClose: () {},
  featureKey: 3,
  hasButton: true,
  body: Row(...)
);

6. 创建自定义通知

feature_notifier 提供了一些方法来创建自定义通知和管理状态:

  • FeatureNotifier.close():关闭自定义Feature Notifier。
  • FeatureNotifier.isClosed():检查特定Feature Notifier是否已关闭。
  • FeatureNotifier.persist():保持特定Feature Notifier活跃,即使它已被关闭。
  • FeatureNotifier.persistAll():保持所有Feature Notifiers活跃,即使它们已被关闭。

8. 参数

以下是可用的参数列表:

int featureKey; /// 用于唯一标识一个特征
String title;
Color? titleColor;
double? titleFontSize;
String description;
Color? descriptionColor;
double? descriptionFontSize;
String? buttonText;
Color? buttonTextColor;
double? buttonTextFontSize;
Color? buttonBackgroundColor;
Widget? icon;
bool? showIcon;
void Function() onClose;
void Function()? onTapButton;
Color? backgroundColor;
Color? strokeColor;
double? strokeWidth;
void Function() onTapCard; /// 当Feature Notifier卡片被点击时触发
bool? hasButton;
Widget? body /// 添加自定义内容到你的通知器

更多关于Flutter功能通知插件feature_notifier的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter功能通知插件feature_notifier的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


在Flutter中,feature_notifier 插件通常用于跨组件的状态管理。尽管没有一个直接名为 feature_notifier 的官方插件,但基于你的描述,我们可以假设你指的是一种自定义通知或状态管理插件,或者更广泛地,使用 providerriverpod 等状态管理库来实现类似功能。

以下是一个使用 provider 库来实现功能通知(Feature Notification)的示例。provider 库在 Flutter 社区中非常流行,用于在应用程序的不同部分之间共享状态。

1. 添加依赖

首先,在你的 pubspec.yaml 文件中添加 provider 依赖:

dependencies:
  flutter:
    sdk: flutter
  provider: ^6.0.0 # 请确保使用最新版本

然后运行 flutter pub get 来获取依赖。

2. 创建通知状态类

创建一个通知状态类,它将包含你想要通知的数据和通知监听器。

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

class FeatureNotifier with ChangeNotifier {
  String _message = "No new features";

  String get message => _message;

  void updateMessage(String newMessage) {
    _message = newMessage;
    notifyListeners();
  }
}

3. 在应用程序中提供通知状态

在你的 MaterialAppCupertinoApp 顶层提供 FeatureNotifier

void main() {
  runApp(
    MultiProvider(
      providers: [
        ChangeNotifierProvider(create: (_) => FeatureNotifier()),
      ],
      child: MyApp(),
    ),
  );
}

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

4. 消费通知状态

在你的 UI 组件中消费 FeatureNotifier 并显示通知消息。

import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'feature_notifier.dart'; // 假设你将上面的类放在这个文件里

class HomeScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    final featureNotifier = Provider.of<FeatureNotifier>(context);

    return Scaffold(
      appBar: AppBar(
        title: Text('Feature Notifier Demo'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'Feature Message:',
              style: TextStyle(fontSize: 20),
            ),
            SizedBox(height: 10),
            Text(
              featureNotifier.message,
              style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
            ),
            SizedBox(height: 20),
            ElevatedButton(
              onPressed: () {
                featureNotifier.updateMessage("New Feature Available!");
              },
              child: Text('Update Message'),
            ),
          ],
        ),
      ),
    );
  }
}

5. 运行应用

现在,当你点击按钮时,FeatureNotifier 会更新消息,并通过 notifyListeners() 方法通知所有监听器,UI 将自动重建以显示新的消息。

这个示例展示了如何使用 provider 库在 Flutter 应用中实现一个简单的功能通知系统。你可以根据需要扩展这个示例,例如添加更多的状态管理逻辑或更复杂的 UI。

回到顶部