Flutter顶部弹窗通知插件top_alert_notification的使用

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

Flutter顶部弹窗通知插件top_alert_notification的使用

Welcome to the top alert notification widget

Flutter 的 snackbars 和 toast 小部件默认情况下只会在主应用的底部显示。这是一个可定制的框架,允许在需要时显示顶部弹窗,并且可以根据需要关闭弹窗。

Features

  • 自定义的 onTap VoidCallback,以便覆盖层执行功能。
  • 向上滑动以关闭弹窗。
  • 可选的右上角关闭按钮 (closeOnX)。
  • 自定义背景颜色。
  • 支持将小部件作为子元素。

Future plans

  • 扩展视图使其高度灵活。
  • 允许更多动态小部件作为覆盖层的子元素。
  • 解决导航问题以自动移除覆盖层。

Getting Started

以下是使用 top_alert_notification 插件的步骤:

  1. pubspec.yaml 文件中添加依赖项:
    dependencies:
      top_alert_notification: 0.0.1
  2. 运行以下命令以包含该包:
    flutter pub get
  3. 导入包:
    import 'package:top_alert_notification/top_alert_notification.dart';
  4. 创建一个带有 BuildContext 和要显示的小部件的新对象。然后调用 .showTopAlert() 显示弹窗或 .dismissTopAlert() 移除弹窗。

完整示例代码

以下是一个完整的示例代码,展示如何在 Flutter 应用中使用 top_alert_notification 插件。

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

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

class MyApp extends StatelessWidget {
  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomeView(),
    );
  }
}

class HomeView extends StatelessWidget {
  final String url = "www.google.com"; // 示例 URL

  [@override](/user/override)
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('顶部弹窗通知示例')),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          // 中间对齐的按钮
          ElevatedButton(
            child: Text('显示顶部弹窗'),
            onPressed: () {
              // 创建并显示顶部弹窗
              TopAlertNotification(
                context, // BuildContext
                Text(
                  "请填写反馈调查问卷", // 弹窗内容
                  textAlign: TextAlign.center,
                  style: TextStyle(fontWeight: FontWeight.bold),
                ),
                closeOnX: true, // 是否显示右上角关闭图标
                onTap: () {
                  print("用户点击了弹窗"); // 点击事件
                },
                color: const Color(0xFFF79912), // 背景颜色
              ).showTopAlert();
            },
          ),
          SizedBox(height: 20), // 添加间距
          ElevatedButton(
            child: Text('关闭顶部弹窗'),
            onPressed: () {
              // 关闭顶部弹窗
              TopAlertNotification.dismissTopAlert(context);
            },
          ),
        ],
      ),
    );
  }
}

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

1 回复

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


在 Flutter 中,top_alert_notification 是一个用于在应用程序顶部显示弹窗通知的插件。它可以用于显示临时的通知、警告、成功消息等。以下是使用 top_alert_notification 插件的基本步骤。

1. 添加依赖

首先,你需要在 pubspec.yaml 文件中添加 top_alert_notification 插件的依赖:

dependencies:
  flutter:
    sdk: flutter
  top_alert_notification: ^1.0.0  # 请检查最新版本

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

2. 导入插件

在你的 Dart 文件中导入 top_alert_notification 插件:

import 'package:top_alert_notification/top_alert_notification.dart';

3. 使用 TopAlertNotification

你可以在需要显示通知的地方使用 TopAlertNotification.show() 方法。以下是一个简单的示例:

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

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

class MyApp extends StatelessWidget {
  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Top Alert Notification Example'),
        ),
        body: Center(
          child: ElevatedButton(
            onPressed: () {
              // 显示顶部通知
              TopAlertNotification.show(
                context,
                message: 'This is a top alert notification!',
                backgroundColor: Colors.blue,
                textStyle: TextStyle(color: Colors.white),
                duration: Duration(seconds: 3),
              );
            },
            child: Text('Show Notification'),
          ),
        ),
      ),
    );
  }
}

4. 参数说明

TopAlertNotification.show() 方法接受以下参数:

  • context: BuildContext 上下文。
  • message: 要显示的消息内容。
  • backgroundColor: 通知的背景颜色。
  • textStyle: 消息文本的样式。
  • duration: 通知显示的持续时间。

5. 自定义通知

你可以根据需要自定义通知的样式和行为。例如,你可以改变背景颜色、文本样式、动画效果等。

TopAlertNotification.show(
  context,
  message: 'Customized Notification',
  backgroundColor: Colors.red,
  textStyle: TextStyle(color: Colors.white, fontSize: 16),
  duration: Duration(seconds: 2),
);

6. 处理通知点击

如果你希望在用户点击通知时执行某些操作,可以添加一个回调函数:

TopAlertNotification.show(
  context,
  message: 'Clickable Notification',
  backgroundColor: Colors.green,
  textStyle: TextStyle(color: Colors.white),
  duration: Duration(seconds: 3),
  onTap: () {
    // 处理点击事件
    print('Notification clicked!');
  },
);

7. 关闭通知

如果你想手动关闭通知,可以使用 TopAlertNotification.hide() 方法:

TopAlertNotification.hide(context);

8. 完整示例

以下是一个完整的示例,展示了如何使用 top_alert_notification 插件:

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

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

class MyApp extends StatelessWidget {
  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Top Alert Notification Example'),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              ElevatedButton(
                onPressed: () {
                  TopAlertNotification.show(
                    context,
                    message: 'This is a top alert notification!',
                    backgroundColor: Colors.blue,
                    textStyle: TextStyle(color: Colors.white),
                    duration: Duration(seconds: 3),
                  );
                },
                child: Text('Show Notification'),
              ),
              SizedBox(height: 20),
              ElevatedButton(
                onPressed: () {
                  TopAlertNotification.hide(context);
                },
                child: Text('Hide Notification'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!