lamsz_quran_api 0.0.4 copy "lamsz_quran_api: ^0.0.4" to clipboard
lamsz_quran_api: ^0.0.4 copied to clipboard

A mixed of offline and cloud Al Quran API for flutter. Basic Al Quran is provided offline

example/lib/main.dart

import 'view/quran.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Lamsz Quran Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: const Scaffold(
        body: Quran(themeColor: Colors.redAccent),
      ),
    );
  }
}

/// this is simple example of the capabilities of the quran api package
/// uncomment this and replace quran object with MyHomePage to see
// class MyHomePage extends StatefulWidget {
//   const MyHomePage({Key? key, required this.title}) : super(key: key);

//   // This widget is the home page of your application. It is stateful, meaning
//   // that it has a State object (defined below) that contains fields that affect
//   // how it looks.

//   // This class is the configuration for the state. It holds the values (in this
//   // case the title) provided by the parent (in this case the App widget) and
//   // used by the build method of the State. Fields in a Widget subclass are
//   // always marked "final".

//   final String title;

//   @override
//   State<MyHomePage> createState() => _MyHomePageState();
// }

// class _MyHomePageState extends State<MyHomePage> {
//   var surahData = SurahContentModel();
//   var surahListData = <SurahHeaderModel>[];
//   var aya11 = Aya();
//   var defaultLang = 'bahasa';
//   var defaultSurah = 1;
//   var defaultAyah = 1;
//   var withTransliteration = true;
//   var withTafseer = true;
//   var withTranslation = true;
//   var tafseer = {'bahasa': 'jalalayn', 'english': 'shaheehinter'};

//   loadSurah(String translationLang) async {
//     var surah = await getSurahData(
//         surahNumber: defaultSurah,
//         translationLang: withTranslation ? translationLang : null,
//         transliterationLang: withTransliteration ? translationLang : null,
//         tafseer: withTafseer ? tafseer[defaultLang] : null);
//     var surahList = await getSurahList();
//     var aya = await getAyaData(
//         surahNumber: defaultSurah,
//         ayaNumber: defaultAyah,
//         translationLang: withTranslation ? translationLang : null,
//         transliterationLang: withTransliteration ? translationLang : null,
//         tafseer: withTafseer ? tafseer[defaultLang] : null);
//     setState(() {
//       surahData = surah;
//       surahListData = surahList;
//       aya11 = aya;
//     });
//   }

//   @override
//   void initState() {
//     loadSurah(defaultLang);
//     super.initState();
//   }

//   changeLang() {
//     defaultLang = defaultLang == 'bahasa' ? 'english' : 'bahasa';
//     loadSurah(defaultLang);
//   }

//   changeSurah() {
//     if (defaultSurah < 114) {
//       defaultSurah++;
//     } else {
//       defaultSurah = 1;
//     }
//     defaultAyah = 1;
//     loadSurah(defaultLang);
//   }

//   changeAya() {
//     if (defaultAyah < surahListData[defaultSurah - 1].ayah!) {
//       defaultAyah++;
//     } else {
//       defaultAyah = 1;
//     }
//     loadSurah(defaultLang);
//   }

//   toggleTranslation() {
//     withTranslation = !withTranslation;

//     loadSurah(defaultLang);
//   }

//   toggleTransliteration() {
//     withTransliteration = !withTransliteration;

//     loadSurah(defaultLang);
//   }

//   toggleTafseer() {
//     withTafseer = !withTafseer;

//     loadSurah(defaultLang);
//   }

//   @override
//   Widget build(BuildContext context) {
//     // This method is rerun every time setState is called, for instance as done
//     // by the _incrementCounter method above.
//     //
//     // The Flutter framework has been optimized to make rerunning build methods
//     // fast, so that you can just rebuild anything that needs updating rather
//     // than having to individually change instances of widgets.
//     return Scaffold(
//       appBar: AppBar(
//         // Here we take the value from the MyHomePage object that was created by
//         // the App.build method, and use it to set our appbar title.
//         title: Text(widget.title),
//       ),
//       body: Column(
//         children: [
//           Expanded(
//             flex: 1,
//             child: SingleChildScrollView(
//               scrollDirection: Axis.horizontal,
//               child: Row(
//                 children: [
//                   TextButton(
//                       onPressed: changeLang,
//                       child: const Text('change language')),
//                   TextButton(
//                       onPressed: changeSurah,
//                       child: const Text('change Surah')),
//                   TextButton(
//                       onPressed: changeAya, child: const Text('change Aya')),
//                   TextButton(
//                       onPressed: toggleTranslation,
//                       child: Text(
//                           'Translation ${withTranslation ? "ON" : "OFF"}')),
//                   TextButton(
//                       onPressed: toggleTransliteration,
//                       child: Text(
//                           'Transliteration ${withTransliteration ? "ON" : "OFF"}')),
//                   TextButton(
//                       onPressed: toggleTafseer,
//                       child: Text('Tafseer ${withTafseer ? "ON" : "OFF"}')),
//                 ],
//               ),
//             ),
//           ),
//           Expanded(
//             flex: 3,
//             child: Column(
//               children: [
//                 const Text('getSurahList()'),
//                 Expanded(
//                   child: SizedBox(
//                     height: 200,
//                     child: ListView.builder(
//                         controller: ScrollController(),
//                         itemCount: surahListData.length,
//                         itemBuilder: (context, i) {
//                           return Padding(
//                             padding: const EdgeInsets.only(
//                                 top: 8.0, bottom: 8.0, left: 3.0, right: 3.0),
//                             child: ListTile(
//                               leading: Text(surahListData[i].arabicIndex),
//                               title: Text(
//                                 surahListData[i].toString(),
//                                 textAlign: TextAlign.start,
//                               ),
//                             ),
//                           );
//                         }),
//                   ),
//                 ),
//               ],
//             ),
//           ),
//           Expanded(
//             flex: 3,
//             child: Column(
//               children: [
//                 Text(
//                     "getSurahData(surahNumber: $defaultSurah, translationLang: $defaultLang)"),
//                 Text('Surah : ${surahData.name ?? ''}'),
//                 Expanded(
//                   child: SizedBox(
//                     height: 200,
//                     child: ListView.builder(
//                         controller: ScrollController(),
//                         itemCount: (surahData.aya ?? []).length,
//                         itemBuilder: (context, i) {
//                           // return Text('test${surah.id.toString()}');
//                           return Padding(
//                             padding: const EdgeInsets.only(
//                                 top: 8.0, bottom: 8.0, left: 3.0, right: 3.0),
//                             child: ListTile(
//                               leading: Text(surahData.aya![i].arabicIndex),
//                               title: Text(
//                                 '''${surahData.aya![i].toString()}
//                                     \n surahNameTranslation: ${surahData.nameTranslation ?? ""}''',
//                                 textAlign: TextAlign.start,
//                               ),
//                             ),
//                           );
//                         }),
//                   ),
//                 ),
//               ],
//             ),
//           ),
//           Expanded(
//             flex: 2,
//             child: SingleChildScrollView(
//               child: Column(
//                 children: [
//                   Text(
//                       """getAyaData(surahNumber: $defaultSurah, ayaNumber: $defaultAyah,
//                           translationLang: $defaultLang );"""),
//                   Text(aya11.toString()),
//                 ],
//               ),
//             ),
//           ),
//         ],
//       ),
//     );
//   }
// }
19
likes
160
points
65
downloads

Publisher

verified publisherlamsz.id

Weekly Downloads

A mixed of offline and cloud Al Quran API for flutter. Basic Al Quran is provided offline

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http

More

Packages that depend on lamsz_quran_api