~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.


f23ace33 pyrossh

2 years ago
fix swipe hit area
Files changed (1) hide show
  1. lib/widgets/verses_view.dart +4 -4
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
- child: Padding(
25
+ child: Padding(
24
- padding: const EdgeInsets.only(left: 20, right: 20),
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,