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

A Quran Package you can put in your app and it will work without the need for any other resources.

example/lib/main.dart

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

void main() => runApp(
      GetMaterialApp(
        debugShowCheckedModeBanner: false,
        theme: ThemeData(
          primaryColor: Colors.blue,
        ),
        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();
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return const QuranLibraryScreen(
      withPageView: true,
      textColor: Colors.black,
      backgroundColor: Color(0xfffaf7f3),
      languageCode: 'ar',
    );
  }
}
49
likes
0
points
1.03k
downloads

Publisher

verified publisheralheekmahlib.com

Weekly Downloads

A Quran Package you can put in your app and it will work without the need for any other resources.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

archive, collection, flutter, flutter_svg, fluttertoast, get, get_storage, http, intl, path_provider

More

Packages that depend on quran_library