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


13984873 pyrossh

2 years ago
fix perf
lib/utils.dart CHANGED
@@ -8,10 +8,9 @@ List<Book> getBibleFromText(String text) {
8
8
  if (lines.length - 1 == index) {
9
9
  continue;
10
10
  }
11
- print(line.substring(0, 2));
12
11
  var book = int.parse(line.substring(0, 2));
13
12
  var chapter = int.parse(line.substring(3, 6));
14
- var verseNo = line.substring(7, 10);
13
+ // var verseNo = line.substring(7, 10);
15
14
  var verseText = line.substring(11);
16
15
  double start = 0;
17
16
  double end = 0;
macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json DELETED
@@ -1,68 +0,0 @@
1
- {
2
- "images" : [
3
- {
4
- "size" : "16x16",
5
- "idiom" : "mac",
6
- "filename" : "app_icon_16.png",
7
- "scale" : "1x"
8
- },
9
- {
10
- "size" : "16x16",
11
- "idiom" : "mac",
12
- "filename" : "app_icon_32.png",
13
- "scale" : "2x"
14
- },
15
- {
16
- "size" : "32x32",
17
- "idiom" : "mac",
18
- "filename" : "app_icon_32.png",
19
- "scale" : "1x"
20
- },
21
- {
22
- "size" : "32x32",
23
- "idiom" : "mac",
24
- "filename" : "app_icon_64.png",
25
- "scale" : "2x"
26
- },
27
- {
28
- "size" : "128x128",
29
- "idiom" : "mac",
30
- "filename" : "app_icon_128.png",
31
- "scale" : "1x"
32
- },
33
- {
34
- "size" : "128x128",
35
- "idiom" : "mac",
36
- "filename" : "app_icon_256.png",
37
- "scale" : "2x"
38
- },
39
- {
40
- "size" : "256x256",
41
- "idiom" : "mac",
42
- "filename" : "app_icon_256.png",
43
- "scale" : "1x"
44
- },
45
- {
46
- "size" : "256x256",
47
- "idiom" : "mac",
48
- "filename" : "app_icon_512.png",
49
- "scale" : "2x"
50
- },
51
- {
52
- "size" : "512x512",
53
- "idiom" : "mac",
54
- "filename" : "app_icon_512.png",
55
- "scale" : "1x"
56
- },
57
- {
58
- "size" : "512x512",
59
- "idiom" : "mac",
60
- "filename" : "app_icon_1024.png",
61
- "scale" : "2x"
62
- }
63
- ],
64
- "info" : {
65
- "version" : 1,
66
- "author" : "xcode"
67
- }
68
- }