I have downloaded a couple of .TTF's and added them as resources. Then added the "Fonts provided by application" array type key to the info.plist, then added the font names as elements. However, The fonts are not showing up in the app. Below is my code. Am I doing something wrong?
struct ContentView: View {
var body: some View {
Text("Hello World").font(.custom("DaddyRewind", size: 36))
}
}