~repos /only-bible-app
GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone
https://git.pyrossh.dev/only-bible-app.git
Discussions:
https://groups.google.com/g/rust-embed-devs
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
6b6efede
—
pyrossh 1 month ago
improve app bar
- lib/widgets/home_app_bar.dart +3 -3
- readme.md +1 -1
lib/widgets/home_app_bar.dart
CHANGED
|
@@ -42,7 +42,7 @@ class HomeAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
|
42
42
|
enableFeedback: true,
|
|
43
43
|
onTap: () => context.dispatch(ShowChapterSelectAction(context, bible, book)),
|
|
44
44
|
child: Padding(
|
|
45
|
-
padding: const EdgeInsets.only(left: 16),
|
|
45
|
+
padding: const EdgeInsets.only(left: 16, right: 16),
|
|
46
46
|
child: Text(
|
|
47
47
|
"${chapter.index + 1}",
|
|
48
48
|
style: Theme.of(context).textTheme.headlineMedium,
|
|
@@ -57,7 +57,7 @@ class HomeAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
|
57
57
|
enableFeedback: true,
|
|
58
58
|
onTap: () => showBibleSelectDialog(context, bible),
|
|
59
59
|
child: Padding(
|
|
60
|
-
padding: const EdgeInsets.only(left: 16),
|
|
60
|
+
padding: const EdgeInsets.only(left: 16, right: 16),
|
|
61
61
|
child: Text(
|
|
62
62
|
bible.languageNative!.toUpperCase(),
|
|
63
63
|
style: Theme.of(context).textTheme.headlineMedium,
|
|
@@ -66,7 +66,7 @@ class HomeAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
|
66
66
|
),
|
|
67
67
|
),
|
|
68
68
|
Padding(
|
|
69
|
-
padding: const EdgeInsets.only(left:
|
|
69
|
+
padding: const EdgeInsets.only(left: 16, right: 16),
|
|
70
70
|
child: IconButton(
|
|
71
71
|
key: const Key("settingsButton"),
|
|
72
72
|
padding: EdgeInsets.zero,
|
readme.md
CHANGED
|
@@ -11,7 +11,7 @@ Many languages supported Indian, European and Asian.
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
dart run flutter_launcher_icons
|
|
14
|
+
dart run flutter_launcher_icons
|
|
15
15
|
dart run flutter_native_splash:create
|
|
16
16
|
```
|
|
17
17
|
|