doc: create CHANGELOG

This commit is contained in:
Vick Top 2024-04-11 14:55:13 +02:00
parent d48a42ccda
commit 718395fb53
3 changed files with 5 additions and 13 deletions

View file

@ -0,0 +1,3 @@
## [1.0.0] - 14 April 2024
* Initial Release

View file

@ -43,18 +43,7 @@ Future<void> _configureApp() async {
}
Future<void> _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 {

View file

@ -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