notification_hub 1.0.3
notification_hub: ^1.0.3 copied to clipboard
An event broadcasting mechanism designed for dispatching notifications to registered observers, inspired by the structure of the iOS Notification Center.
import 'package:example/post_btns.dart/post_btn_one.dart';
import 'package:example/post_btns.dart/post_btn_two.dart';
import 'package:example/post_btns.dart/post_btn_two.dart';
import 'package:example/widget_a.dart';
import 'package:example/widget_b.dart';
import 'package:example/widget_c.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
//navigatorObservers: [CustomNavigatorObserver()],
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blueAccent),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Padding(
padding: EdgeInsets.only(top: 50),
child: SingleChildScrollView(
child: Column(
children: <Widget>[
WidgetA(),
SizedBox(
height: 20,
),
WidgetB(),
SizedBox(
height: 20,
),
WidgetCC(),
SizedBox(
height: 20,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [PostButtonOne(), PostButtonTwo()],
)
],
),
),
),
);
}
}