Quiz Bank

A package containing the general quiz questions based on True False. Quiz Bank is super easy to use TRUE FALSE based question bank for Flutter. You may add your own quiz questions in addition to the existing one.

Version

Features

  • Single line question generator
  • Super customizable
    • Randomize the questions
      • Add your own questions

Getting started

You must add the library as a dependency to your project.

dependencies:
 quiz_bank: ^0.0.1

You can also reference the git repo directly if you want:

dependencies:
 quiz_bank:
   git: git://github.com/droidbg/quiz_bank.git

You should then run flutter packages get

Usage

import 'package:quiz_bank/quiz_bank.dart'
main(){
QuizBrain quiz_brain=QuizBrain();
print(quiz_brain.getQuestionText());
print(quiz_brain.getCorrectAnswer());
//Random Question Generate
print(quiz_brain.RandomQuestion());

}

Contributions

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Version compatability

See CHANGELOG for all breaking (and non-breaking) changes.


Made with ❤ by Binni G.

Libraries

quiz_bank