~repos /only-bible-app

#kotlin#android#ios

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.


0eea479d pyrossh

2 years ago
fix spacing
lib/l10n/app_bn.arb CHANGED
@@ -4,7 +4,7 @@
4
4
  "bibleTitle": "Bible",
5
5
  "genesis": "আদিপুস্তক ",
6
6
  "exodus": "যাত্রাপুস্তক ",
7
- "leviticus": "লেবীয় পুস্তক ",
7
+ "leviticus": "লেবীয় পুস্তক",
8
8
  "numbers": "গণনা পুস্তক",
9
9
  "deuteronomy": "দ্বিতীয় বিবরণ",
10
10
  "joshua": "যোশুয়া",
lib/widgets/actions_sheet.dart CHANGED
@@ -26,7 +26,7 @@ class ActionsSheet extends StatelessWidget {
26
26
  mainAxisAlignment: MainAxisAlignment.start,
27
27
  children: [
28
28
  Row(
29
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
29
+ mainAxisAlignment: isDesktop ? MainAxisAlignment.spaceEvenly : MainAxisAlignment.spaceBetween,
30
30
  children: [
31
31
  IconButtonText(
32
32
  leading: IconButton(
@@ -34,7 +34,7 @@ class ActionsSheet extends StatelessWidget {
34
34
  onPressed: () => context.appEvent.removeSelectedHighlights(context),
35
35
  icon: Icon(Icons.cancel_outlined, size: 28, color: iconColor),
36
36
  ),
37
- trailing: Text("Clear", style: bodySmall),
37
+ trailing: Text("", style: bodySmall),
38
38
  ),
39
39
  IconButtonText(
40
40
  leading: IconButton(
@@ -42,7 +42,7 @@ class ActionsSheet extends StatelessWidget {
42
42
  onPressed: () => context.appEvent.showHighlights(context),
43
43
  icon: Icon(Icons.border_color_outlined, size: 28, color: iconColor),
44
44
  ),
45
- trailing: Text("Highlight", style: bodySmall),
45
+ trailing: Text("", style: bodySmall),
46
46
  ),
47
47
  IconButtonText(
48
48
  leading: IconButton(
@@ -60,7 +60,7 @@ class ActionsSheet extends StatelessWidget {
60
60
  icon: Icon(audioIcon, size: 34, color: audioEnabled ? iconColor : Colors.grey),
61
61
  ),
62
62
  trailing: Text(
63
- audioText,
63
+ "",
64
64
  style: bodySmall!.copyWith(
65
65
  color: audioEnabled ? bodySmall.color : Colors.grey,
66
66
  ),
@@ -72,7 +72,7 @@ class ActionsSheet extends StatelessWidget {
72
72
  onPressed: () => context.appEvent.showNoteField(context, context.appEvent.selectedVerses.first),
73
73
  icon: Icon(Icons.post_add_outlined, size: 34, color: iconColor),
74
74
  ),
75
- trailing: Text("Note", style: bodySmall),
75
+ trailing: Text("", style: bodySmall),
76
76
  ),
77
77
  IconButtonText(
78
78
  leading: IconButton(
@@ -80,7 +80,7 @@ class ActionsSheet extends StatelessWidget {
80
80
  onPressed: () => context.appEvent.shareVerses(context),
81
81
  icon: Icon(Icons.share_outlined, size: 34, color: iconColor),
82
82
  ),
83
- trailing: Text("Share", style: bodySmall),
83
+ trailing: Text("", style: bodySmall),
84
84
  ),
85
85
  ],
86
86
  ),