flutter_quran 0.0.2 copy "flutter_quran: ^0.0.2" to clipboard
flutter_quran: ^0.0.2 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:flutter_quran/flutter_quran.dart';

void main() => runApp(
      MaterialApp(
        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() {
    FlutterQuran().init();
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return const FlutterQuranScreen();
  }
}
10
likes
140
points
39
downloads

Publisher

unverified uploader

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

Documentation

API reference

License

MIT (license)

Dependencies

bloc, flutter, flutter_bloc, fluttertoast, intl, shared_preferences

More

Packages that depend on flutter_quran