A clean, modern Quran companion for focused reading, listening, and daily reflection.
eQuran brings together Quran reading, ayah and surah audio playback, offline audio downloads, tafsir, transliteration, favourites, and reading progress in a Material 3 Flutter app. The interface is intentionally quiet: useful controls stay close at hand without pulling attention away from the text.
Screenshots are not currently included in this repository. Add images under metadata/en-US/images/ or a screenshots/ directory, then replace the placeholders below.
| Reading | Audio | Favourites |
|---|---|---|
| Screenshot placeholder | Screenshot placeholder | Screenshot placeholder |
- Read the Quran by Surah or Juz.
- Switch between a focused card view and a full-page reading view.
- Resume from the last-read ayah.
- Play complete surahs or individual ayahs.
- Download surah or ayah audio for offline listening.
- Choose from multiple reciters.
- Use background playback and system media controls.
- Save favourite ayahs with optional notes.
- View English translation, transliteration, and tafsir content where available.
- Share ayahs as generated images.
- Use responsive layouts across phone, tablet, desktop, and foldable-sized screens.
| Item | Value |
|---|---|
| Package name | equran |
| Android application ID | com.app.equran |
| Current version | 2.7.3+44 |
| Flutter SDK | >=3.38.4 |
| Dart SDK | >=3.10.3 <4.0.0 |
| Release workflow targets | Android split APKs, Linux bundle, Windows bundle |
| License | Not specified in this repository |
- Flutter with Material 3.
- Hive for lightweight local persistence.
- just_audio, just_audio_background, and audioplayers for playback flows.
- quran package for Quran text and metadata.
- Local assets for Hafs font, transliteration, daily content, and tafsir data.
- Flutter SDK on the stable channel.
- Git.
- Platform tooling for your target:
- Android: Android Studio and Android SDK.
- Linux:
clang,cmake,ninja-build,pkg-config,libgtk-3-dev, plus GStreamer development packages for audio builds. - Windows: Visual Studio with the Desktop development with C++ workload.
git clone https://github.com/ya27hw/equran_app.git
cd equran_appflutter pub getflutter runYou can also target a specific platform:
flutter run -d android
flutter run -d linux
flutter run -d windows
flutter run -d chromeflutter build apk --release --split-per-abiArtifacts are written to:
build/app/outputs/flutter-apk/
flutter config --enable-linux-desktop
flutter build linux --releaseArtifacts are written to:
build/linux/x64/release/bundle/
flutter config --enable-windows-desktop
flutter build windows --releaseArtifacts are written to:
build/windows/x64/runner/Release/
The release workflow lives at .github/workflows/deploy.yml.
On pushes to main or manual workflow dispatch, the workflow:
- Reads the version from
pubspec.yaml. - Builds Android split APKs, a Linux release bundle, and a Windows release bundle.
- Creates a tag from the semantic version, for example
v2.7.3. - Publishes a GitHub Release with generated release notes and build artifacts.
Existing tags are detected before release jobs run, so previously published versions are skipped.
lib/
backend/ Data, downloads, playback helpers, settings, and services
home/ Main app screens and reading/player experiences
utils/ Theme, responsive, and display helpers
widgets/ Shared UI components
assets/
fonts/ Hafs Quran font
tafsir/ Tafsir JSON assets
transliteration/
metadata/ Store listing metadata and app icon
Contributions are welcome when they stay aligned with the app’s focused reading and listening experience.
Before opening a pull request:
-
Keep changes scoped and reviewable.
-
Run formatting:
dart format . -
Run analysis:
flutter analyze
-
Test the affected platform or feature path.
-
Update documentation when behavior, setup, or release steps change.
No license file is currently included in this repository. Add a LICENSE file before distributing or reusing the source under explicit open-source terms.