Flash Cards now used stored lesson information

This commit is contained in:
Avery Pace
2021-11-09 13:17:22 -05:00
parent 287c9fb8ac
commit 1c928fa876
7 changed files with 151 additions and 42 deletions

View File

@@ -0,0 +1,20 @@
//
// FlashCardLessonsResultsView.swift
// Toki Trainer
//
// Created by Avery Ada Pace on 11/8/21.
//
import SwiftUI
struct FlashCardLessonsResultsView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct FlashCardLessonsResultsView_Previews: PreviewProvider {
static var previews: some View {
FlashCardLessonsResultsView()
}
}