Skip to content

Commit

Permalink
Added HomeScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
niloysikdar committed May 2, 2021
1 parent 65dd086 commit d31f849
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:plaso_connect/constants/colors.dart';
import 'package:plaso_connect/screens/showOxygenposts.dart';
import 'package:plaso_connect/screens/homescreen.dart';

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
Expand All @@ -30,7 +30,7 @@ class MyApp extends StatelessWidget {
primaryColor: kelectronBlue,
iconTheme: IconThemeData(color: kelectronBlue),
),
home: ShowOxygenPosts(),
home: HomeScreen(),
);
}
}
92 changes: 92 additions & 0 deletions lib/screens/homescreen.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
import 'package:flutter/material.dart';
import 'package:plaso_connect/constants/colors.dart';
import 'package:plaso_connect/screens/statdashboard.dart';
import 'package:plaso_connect/widgets/boxdecoration.dart';

class HomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(left: 30, bottom: 15),
child: Text(
"What are you looking for ?",
style: TextStyle(
color: kelectronBlue,
fontSize: 22,
fontWeight: FontWeight.w600,
),
),
),
homeButton(
text: "Latest COVID Stats",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return TotalStatsDashboard();
}),
);
},
),
homeButton(
text: "Plasma/Blood",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return TotalStatsDashboard();
}),
);
},
),
homeButton(
text: "Oxygen and support",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return TotalStatsDashboard();
}),
);
},
),
homeButton(
text: "More",
onTap: () {},
),
],
),
),
);
}

Widget homeButton({
required String text,
required Function onTap,
}) {
return GestureDetector(
onTap: onTap as void Function()?,
child: Container(
margin: EdgeInsets.symmetric(horizontal: 30, vertical: 15),
padding: EdgeInsets.all(15),
decoration: newboxDecoration(),
child: Center(
child: Text(
text,
style: TextStyle(
color: kelectronBlue,
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
),
),
);
}
}

0 comments on commit d31f849

Please sign in to comment.