Skip to content

Instantly share code, notes, and snippets.

@jeroenouw
Created October 24, 2020 09:33
Show Gist options
  • Save jeroenouw/17d531305f0645d7994693036f5ff64f to your computer and use it in GitHub Desktop.
Save jeroenouw/17d531305f0645d7994693036f5ff64f to your computer and use it in GitHub Desktop.
Main dart flutter notifications
import 'package:flutter/material.dart';
import 'package:push_messages/notifications.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final Notifications _notifications = Notifications();
@override
void initState() {
super.initState();
this._notifications.initNotifications();
}
void _pushNotification() {
this._notifications.pushNotification();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
floatingActionButton: FloatingActionButton(
onPressed: _pushNotification,
tooltip: 'Push notifications',
child: Icon(Icons.add),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment