Skip to content

Commit

Permalink
Publishing digit_firbase_services initial release (#585)
Browse files Browse the repository at this point in the history
* Publishing digit_firbase_services initial release

* Added description for digit_firebase_services
  • Loading branch information
Ramkrishna-egov authored Nov 14, 2024
1 parent fafde86 commit 5b1e896
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 34 deletions.
1 change: 0 additions & 1 deletion packages/digit_firebase_services/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ migrate_working_dir/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
Expand Down
3 changes: 1 addition & 2 deletions packages/digit_firebase_services/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
## 0.0.1

* TODO: Describe initial release.
* Digit Firebase Services Initial Release
47 changes: 18 additions & 29 deletions packages/digit_firebase_services/README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,28 @@
<!--
This README describes the package. If you publish this package to pub.dev,
this README's contents appear on the landing page for your package.
For information about how to write a good package README, see the guide for
[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).
For general information about developing packages, see the Dart guide for
[creating packages](https://dart.dev/guides/libraries/create-library-packages)
and the Flutter guide for
[developing packages and plugins](https://flutter.dev/developing-packages).
-->

TODO: Put a short description of the package here that helps potential users
know whether this package might be useful for them.
# digit_firebase_services
digit_firebase_services is a Flutter package that simplifies the integration of Firebase services into your app. It bundles together commonly used Firebase services like firebase_core and firebase_crashlytics and allows you to enable or disable them with a simple flag. This package is designed to be flexible and configurable, making it easy to manage Firebase services in a unified way.

## Features

TODO: List what your package can do. Maybe include images, gifs, or videos.
- Unified integration of Firebase Core and Firebase Crashlytics.
- Simple API to set up Firebase services.

## Getting started

TODO: List prerequisites and provide or point to information on how to
start using the package.

## Usage

TODO: Include short and useful examples for package users. Add longer examples
to `/example` folder.

```dart
const like = 'sample';
dependencies:
digit_firebase_services: latest_version
```

## Additional information
## Usage

TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.
```dart
import 'package:digit_firebase_services/digit_firebase_services.dart'
as firebase_services;
firebase_services.initialize(
options: DefaultFirebaseOptions.currentPlatform,
onErrorMessage: (value) {
AppLogger.instance.error(title: 'CRASHLYTICS', message: value);
},
);
```
5 changes: 3 additions & 2 deletions packages/digit_firebase_services/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: digit_firebase_services
description: A new Flutter package project.
description: digit_firebase_services is a Flutter package that simplifies the integration of Firebase services into your app. It bundles together commonly used Firebase services like firebase_core and firebase_crashlytics and allows you to enable or disable them with a simple flag. This package is designed to be flexible and configurable, making it easy to manage Firebase services in a unified way.
version: 0.0.1
homepage:
homepage: https://github.com/egovernments/health-campaign-field-worker-app/tree/master/packages/digit_firebase_services
repository: https://github.com/egovernments/health-campaign-field-worker-app

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit 5b1e896

Please sign in to comment.