~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
726d4d32
—
pyrossh 2 years ago
fix dark theme font
- lib/app.dart +3 -2
lib/app.dart
CHANGED
|
@@ -86,6 +86,7 @@ class App extends StatelessWidget {
|
|
|
86
86
|
),
|
|
87
87
|
),
|
|
88
88
|
darkTheme: ThemeData(
|
|
89
|
+
fontFamily: "Roboto",
|
|
89
90
|
useMaterial3: true,
|
|
90
91
|
visualDensity: VisualDensity.adaptivePlatformDensity,
|
|
91
92
|
primaryColor: const Color(0xFF2D0B0B),
|
|
@@ -129,8 +130,8 @@ class App extends StatelessWidget {
|
|
|
129
130
|
bodyMedium: TextStyle(
|
|
130
131
|
fontSize: 16,
|
|
131
132
|
fontWeight: FontWeight.w400,
|
|
132
|
-
wordSpacing: 0
|
|
133
|
+
wordSpacing: 0,
|
|
133
|
-
letterSpacing: 0
|
|
134
|
+
letterSpacing: 0,
|
|
134
135
|
color: Color(0xFFBCBEC4),
|
|
135
136
|
),
|
|
136
137
|
headlineLarge: TextStyle(
|