mirror of
https://github.com/Iconica-Development/flutter_notification_center.git
synced 2025-05-18 16:43:44 +02:00
doc: create CHANGELOG
This commit is contained in:
parent
d48a42ccda
commit
718395fb53
3 changed files with 5 additions and 13 deletions
|
@ -0,0 +1,3 @@
|
|||
## [1.0.0] - 14 April 2024
|
||||
|
||||
* Initial Release
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue