Holy Bible Education Package

The Holy Bible Education package is a comprehensive resource for developers who want to integrate daily biblical readings into their applications. This package provides various components, including the first reading, second reading, and responsorial psalms, for each day. Package created by Kimberly Moniz.

Features

  • Daily readings from the Holy Bible.
  • Includes the first reading, second reading, and responsorial psalms.
  • Organized by date for easy access.
  • Suitable for integrating into applications, websites, or other development projects.

Installation

You can install the Holy Bible Education package via the package manager of your choice. Here's an example using npm:

pub add holybibleeducation

Usage

To use the Holy Bible Education package in your project, you can import the necessary components and retrieve the daily readings programmatically.

import 'package:flutter/material.dart'; import 'package:holybibleeducation/holybibleeducation.dart'; class HolyBibleEducationExample extends StatelessWidget { const HolyBibleEducationExample({super.key});

@override Widget build(BuildContext context) {

return MaterialApp(
  home: Scaffold(
    appBar: AppBar(title: Text("Readings")),
    body: SingleChildScrollView(
      child: Column(
        children: [
          Text("First Reading"),
          Text(Readings.firstReading[15062023]![0]),
          Text(Readings.firstReading[15062023]![1]),
        ],
      ),
    ),
    ),

);

} }

License

This package is licensed under the Apache License 2.0 (https://opensource.org/licenses/Apache-2.0).

Acknowledgements

  • The Holy Bible Education package uses data from ChatGPT for the daily readings.
  • Special thanks to the contributors and community for their valuable feedback and support.

Contact

For any questions or inquiries, please contact kimberlythemoniz@gmail.com.

Libraries

holybibleeducation