remove prints
This commit is contained in:
@@ -124,7 +124,6 @@ class _HomeScreenState extends State<HomeScreen> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void _nextQuestion() {
|
void _nextQuestion() {
|
||||||
print('deck size: ${_deck.length}');
|
|
||||||
if (_deck.isEmpty) return;
|
if (_deck.isEmpty) return;
|
||||||
|
|
||||||
_deck.sort((a, b) {
|
_deck.sort((a, b) {
|
||||||
@@ -165,7 +164,6 @@ class _HomeScreenState extends State<HomeScreen> {
|
|||||||
});
|
});
|
||||||
|
|
||||||
_current = _deck.first;
|
_current = _deck.first;
|
||||||
print('current: ${_current?.characters}');
|
|
||||||
|
|
||||||
_correctAnswers = [];
|
_correctAnswers = [];
|
||||||
_options = [];
|
_options = [];
|
||||||
@@ -211,9 +209,6 @@ class _HomeScreenState extends State<HomeScreen> {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
print('options: $_options');
|
|
||||||
print('correctAnswers: $_correctAnswers');
|
|
||||||
|
|
||||||
setState(() {});
|
setState(() {});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user