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


4c2473b3 pyrossh

2 years ago
remove sidebar border
Files changed (1) hide show
  1. 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: DecoratedBox(
28
+ child: Padding(
29
- decoration: const BoxDecoration(
29
+ padding: const EdgeInsets.only(bottom: 50, right: 50, top: 0),
30
- border: Border(
30
+ child: Column(
31
- right: BorderSide(
31
+ mainAxisAlignment: MainAxisAlignment.center,
32
- color: Colors.black,
32
+ crossAxisAlignment: CrossAxisAlignment.end,
33
- width: 1.5,
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
  ),