In answers_widget.dart, several lines limit the multiple-choice to 4 answers only:
line 10 const questionLeadings = ['A', 'B', 'C', 'D'];
line 63 for (int i = 0; i < 4; i++) {
line 79 for (int i = 0; i < 4; i++) {
For experiment, I change these lines to support 5 answers then modify the mock_api.dart so the last question has 5 answers. The program was not able to rend
This is a flutter app made using dart programming language . It uses firebase api to store and fetch data . It also uses native devices features such as library and camera . You can signup or login through your mail and can chat easily with your colleagues . Most important fact about this app is that it is 100% secured and privacy of users is maintained . So wave your hand and get in company 👋 . See you there .
Launching lib\main.dart on AOSP on IA Emulator in debug mode...
Running Gradle task 'assembleDebug'...
Parameter format not correct -
Note: C:\src\flutter\flutter\.pub-cache\hosted\pub.dartlang.org\audio_session-0.1.5\android\src\main\java\com\ryanheise\audio_session\AndroidAudioManager.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: C:
In answers_widget.dart, several lines limit the multiple-choice to 4 answers only:
line 10 const questionLeadings = ['A', 'B', 'C', 'D'];
line 63 for (int i = 0; i < 4; i++) {
line 79 for (int i = 0; i < 4; i++) {
For experiment, I change these lines to support 5 answers then modify the mock_api.dart so the last question has 5 answers. The program was not able to rend