quran_library 0.1.8 copy "quran_library: ^0.1.8" to clipboard
quran_library: ^0.1.8 copied to clipboard

An integrated package for displaying the Holy Qur’an identical to the Medina Quran with the narration of Hafs on the authority of Asim.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:quran_library/quran_library.dart';

void main() => runApp(
      MaterialApp(
        debugShowCheckedModeBanner: false,
        theme: ThemeData(
          primaryColor: Colors.blue,
          useMaterial3: false,
        ),
        home: const MyApp(),
      ),
    );

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    QuranLibrary().init();
    QuranLibrary().initTafsir();
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return QuranLibraryScreen(
      isDark: false,
      showAyahBookmarkedIcon: true,
      ayahIconColor: Color(0xffcdad80),
      backgroundColor: Colors.white,
      textColor: Colors.black,
      isFontsLocal: false,
    );
  }
}
47
likes
0
points
842
downloads

Publisher

verified publisheralheekmahlib.com

Weekly Downloads

An integrated package for displaying the Holy Qur’an identical to the Medina Quran with the narration of Hafs on the authority of Asim.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

another_xlider, archive, dio, drift, flutter, flutter_svg, get, get_storage, http, path, path_provider

More

Packages that depend on quran_library