Add option to use system headline fonts

This commit is contained in:
MM20
2022-07-05 21:13:43 +02:00
parent e6f9bb8971
commit 34f8cfb31a
10 changed files with 137 additions and 19 deletions
@@ -17,6 +17,7 @@ fun createFactorySettings(context: Context): Settings {
.setLightScheme(DefaultLightCustomColorScheme)
.setDarkScheme(DefaultDarkCustomColorScheme)
)
.setFont(Settings.AppearanceSettings.Font.Poppins)
.build()
)
.setWeather(
@@ -70,6 +70,12 @@ message Settings {
Pager = 1;
}
Layout layout = 9;
enum Font {
Poppins = 0;
SystemDefault = 1;
}
Font font = 10;
}
AppearanceSettings appearance = 2;