~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.
f23ace33
—
pyrossh 2 years ago
fix swipe hit area
lib/widgets/verses_view.dart
CHANGED
|
@@ -20,10 +20,10 @@ class VersesView extends StatelessWidget {
|
|
|
20
20
|
onSwipeRight: (offset) {
|
|
21
21
|
previousChapter(context, bible.value, chapter.book, chapter.index);
|
|
22
22
|
},
|
|
23
|
+
child: SingleChildScrollView(
|
|
24
|
+
physics: const BouncingScrollPhysics(),
|
|
23
|
-
|
|
25
|
+
child: Padding(
|
|
24
|
-
|
|
26
|
+
padding: const EdgeInsets.only(left: 20, right: 20),
|
|
25
|
-
child: SingleChildScrollView(
|
|
26
|
-
physics: const BouncingScrollPhysics(),
|
|
27
27
|
child: Column(
|
|
28
28
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
29
29
|
crossAxisAlignment: CrossAxisAlignment.start,
|