Cards shuffle correctly, remove statistics tabview

This commit is contained in:
Avery Pace
2021-11-11 10:04:48 -05:00
parent baa09e4363
commit 42ebdbf74a
5 changed files with 1737 additions and 15 deletions
@@ -67,7 +67,7 @@ struct FlashCardLessonsView: View {
var body: some View {
NavigationView {
List(flashCardLessonsVM.lessons, id: \.lesson) { lesson in
NavigationLink(destination: FlashCardView(lesson: lesson.lesson, passedDictionary: lesson.words)) {
NavigationLink(destination: FlashCardView(lesson: lesson.lesson, passedDictionary: lesson.words.shuffled())) {
Text(lesson.lesson)
.bold()
.onAppear {