~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.
4c2473b3
—
pyrossh 2 years ago
remove sidebar border
- lib/widgets/sidebar.dart +15 -25
lib/widgets/sidebar.dart
CHANGED
|
@@ -25,32 +25,22 @@ class Sidebar extends StatelessWidget {
|
|
|
25
25
|
SizedBox(
|
|
26
26
|
width: 250,
|
|
27
27
|
height: height,
|
|
28
|
-
child:
|
|
28
|
+
child: Padding(
|
|
29
|
-
|
|
29
|
+
padding: const EdgeInsets.only(bottom: 50, right: 50, top: 0),
|
|
30
|
-
|
|
30
|
+
child: Column(
|
|
31
|
-
|
|
31
|
+
mainAxisAlignment: MainAxisAlignment.center,
|
|
32
|
-
|
|
32
|
+
crossAxisAlignment: CrossAxisAlignment.end,
|
|
33
|
-
|
|
33
|
+
children: [
|
|
34
|
+
Flexible(
|
|
35
|
+
child: Text("ONLY", style: Theme.of(context).textTheme.headlineLarge),
|
|
34
36
|
),
|
|
37
|
+
Flexible(
|
|
38
|
+
child: Text("BIBLE", style: Theme.of(context).textTheme.headlineLarge),
|
|
35
|
-
|
|
39
|
+
),
|
|
40
|
+
Flexible(
|
|
41
|
+
child: Text("APP", style: Theme.of(context).textTheme.headlineLarge),
|
|
36
|
-
|
|
42
|
+
),
|
|
37
|
-
child: Padding(
|
|
38
|
-
padding: const EdgeInsets.only(bottom: 50, right: 50, top: 0),
|
|
39
|
-
child: Column(
|
|
40
|
-
mainAxisAlignment: MainAxisAlignment.center,
|
|
41
|
-
crossAxisAlignment: CrossAxisAlignment.end,
|
|
42
|
-
children: [
|
|
43
|
-
Flexible(
|
|
44
|
-
child: Text("ONLY", style: Theme.of(context).textTheme.headlineLarge),
|
|
45
|
-
),
|
|
46
|
-
Flexible(
|
|
47
|
-
child: Text("BIBLE", style: Theme.of(context).textTheme.headlineLarge),
|
|
48
|
-
),
|
|
49
|
-
Flexible(
|
|
50
|
-
child: Text("APP", style: Theme.of(context).textTheme.headlineLarge),
|
|
51
|
-
),
|
|
52
|
-
|
|
43
|
+
],
|
|
53
|
-
),
|
|
54
44
|
),
|
|
55
45
|
),
|
|
56
46
|
),
|