Skip to content

Commit

Permalink
Change the font size to fit all devices
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhrabcak committed May 7, 2024
1 parent 82b4600 commit ab7a445
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions EdupageWidget.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = eu.hrabcak.EdupageWidget;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -543,7 +543,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = eu.hrabcak.EdupageWidget;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
6 changes: 3 additions & 3 deletions NextLessonWidget/NextLessonWidget.swift
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ struct NextLessonWidgetEntryView : View {
} else if entry.lesson.name != "END" {
Text(
format.string(from: entry.lesson.time.start) + " - " + format.string(from: entry.lesson.time.end)
).font(.system(size: 20))
).font(.system(size: 18))
Text(entry.lesson.name)
.bold()
.font(.system(size: 45))
Expand Down Expand Up @@ -219,7 +219,7 @@ struct NextLessonWidget: Widget {
.padding()
}
}
.configurationDisplayName("My Widget")
.description("This is an example widget.")
.configurationDisplayName("Next Lesson Widget")
.description("Configure your edupage credentials.")
}
}

0 comments on commit ab7a445

Please sign in to comment.