From 718395fb531def304106bd95e5d5a1e86201b518 Mon Sep 17 00:00:00 2001 From: Vick Top Date: Thu, 11 Apr 2024 14:55:13 +0200 Subject: [PATCH] doc: create CHANGELOG --- CHANGELOG.md | 3 +++ .../example/lib/main.dart | 13 +------------ packages/flutter_notification_center/pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..2e668e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## [1.0.0] - 14 April 2024 + +* Initial Release \ No newline at end of file diff --git a/packages/flutter_notification_center/example/lib/main.dart b/packages/flutter_notification_center/example/lib/main.dart index 5af84ea..dac64a1 100644 --- a/packages/flutter_notification_center/example/lib/main.dart +++ b/packages/flutter_notification_center/example/lib/main.dart @@ -43,18 +43,7 @@ Future _configureApp() async { } Future _signInUser() async { - FirebaseAuth auth = FirebaseAuth.instance; - User? user = auth.currentUser; - if (user == null) { - try { - await auth.signInWithEmailAndPassword( - email: 'freek@iconica.nl', - password: 'wachtwoord', - ); - } catch (e) { - debugPrint('Failed to sign in: $e'); - } - } + //TO DO: Implement your own sign in logic } class NotificationCenterDemo extends StatefulWidget { diff --git a/packages/flutter_notification_center/pubspec.yaml b/packages/flutter_notification_center/pubspec.yaml index 983031a..83df552 100644 --- a/packages/flutter_notification_center/pubspec.yaml +++ b/packages/flutter_notification_center/pubspec.yaml @@ -1,5 +1,5 @@ name: flutter_notification_center -description: "A new Flutter project." +description: "A Flutter package for displaying notifications in a notification center." # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev