Custom font size for Text in SwiftUI
You can set an explicit size for the system font with:
.font(.system(size: 60))
You can set custom font size like this,
.font(.custom("FONT_NAME", size: 20))
You can set an explicit size for the system font with:
.font(.system(size: 60))
You can set custom font size like this,
.font(.custom("FONT_NAME", size: 20))