~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.
6ee40e5f
—
pyrossh 2 years ago
fix dark color icons
lib/widgets/actions_sheet.dart
CHANGED
|
@@ -8,7 +8,7 @@ class ActionsSheet extends StatelessWidget {
|
|
|
8
8
|
|
|
9
9
|
@override
|
|
10
10
|
Widget build(BuildContext context) {
|
|
11
|
-
final iconColor = Colors.
|
|
11
|
+
final iconColor = AppModel.of(context).darkMode ? Colors.white.withOpacity(0.9) : Colors.black.withOpacity(0.9);
|
|
12
12
|
final bodySmall = Theme.of(context).textTheme.bodySmall;
|
|
13
13
|
final model = ChapterViewModel.of(context);
|
|
14
14
|
final audioIcon = model.isPlaying ? Icons.pause_circle_outline : Icons.play_circle_outline;
|