Skip to content

Commit cbe5086

Browse files
committed
change backgorund and add more text
1 parent 5d82b55 commit cbe5086

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

assets/background.jpg

-352 KB
Loading

lib/routes/home_route.dart

+11-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class HomeRoute extends StatelessWidget {
1717
image: DecorationImage(image: AssetImage("background.jpg"), fit: BoxFit.cover),
1818
),
1919
child: BackdropFilter(
20-
filter: ImageFilter.blur(sigmaX: 2, sigmaY: 2),
20+
filter: ImageFilter.blur(sigmaX: 3, sigmaY: 3),
2121
child: Stack(
2222
children: <Widget>[
2323
SingleChildScrollView(
@@ -30,21 +30,21 @@ class HomeRoute extends StatelessWidget {
3030
height: 200,
3131
image: AssetImage("logo.png"),
3232
),
33-
Text("Flutter Coffee Show", style: GoogleFonts.homemadeApple(fontSize: 48, color: Colors.black)),
33+
Text("Flutter Coffee Show", style: GoogleFonts.homemadeApple(fontSize: 48, color: Colors.white)),
3434
SizedBox(height: 30),
35-
Text(
36-
"A Flutter show shaped by the community, with interesting but entertaining content ranging from live talks, news, packages, QAs and much more!",
37-
style: GoogleFonts.architectsDaughter(fontSize: 36, color: Colors.black),
35+
SocialMediaBar(),
36+
SizedBox(height: 30),
37+
Container(
38+
margin: EdgeInsets.only(left: 200, right: 200),
39+
child: Text(
40+
"A Flutter show shaped by the community, with interesting but entertaining content ranging from live talks, news, packages, QAs and much more!\nTo get the latest updates, make sure to follow us on our social media channels above and tune in for our first show on the 17th of September 5 pm UTC!",
41+
style: GoogleFonts.architectsDaughter(fontSize: 36, color: Colors.white70),
42+
),
3843
),
3944
SizedBox(height: 30),
40-
Countdown(),
4145
SizedBox(height: 30),
42-
Text(
43-
"Want to contribute or learn more?",
44-
style: GoogleFonts.architectsDaughter(fontSize: 36, color: Colors.black),
45-
),
46+
Countdown(),
4647
SizedBox(height: 30),
47-
SocialMediaBar(),
4848
],
4949
),
5050
),

lib/widgets/countdown_number.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class CountdownNumber extends StatelessWidget {
1414
width: 140,
1515
height: 140,
1616
decoration: BoxDecoration(
17-
color: Colors.black38,
17+
color: Colors.white30,
1818
borderRadius: BorderRadius.all(Radius.circular(200))
1919
),
2020
child: Column(

0 commit comments

Comments
 (0)