Skip to content

Commit

Permalink
Merge pull request #13 from naveenjujaray/Dev
Browse files Browse the repository at this point in the history
Fixed Education
  • Loading branch information
naveenjujaray committed Oct 5, 2020
2 parents f02f7ff + d3e2cda commit 9cb96b4
Showing 1 changed file with 72 additions and 63 deletions.
135 changes: 72 additions & 63 deletions lib/include/Rows/educationmain.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,42 +74,48 @@ class EduTab extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Education', style: TextStyle(fontWeight: FontWeight.w600, fontSize: 50),),
SizedBox(height: 30,),
SizedBox(height: 10,),
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
scrollDirection: Axis.vertical,
child: Column(

children: [
SizedBox(width: 15,),
Container(
margin: EdgeInsets.all(10.0),
padding: EdgeInsets.all(10.0),
height: 150,
width: 150,
alignment: Alignment.centerLeft,
decoration: BoxDecoration(

Center(
child: Container(
margin: EdgeInsets.all(10.0),
padding: EdgeInsets.all(10.0),
height: 150,
width: 150,
alignment: Alignment.centerLeft,
decoration: BoxDecoration(

boxShadow: [new BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 10.0,
spreadRadius: 5.0,
offset: Offset(
0.0, // Move to right 10 horizontally
5.0, // Move to bottom 10 Vertically
),
0.0, // Move to right 10 horizontally
10.0, // Move to bottom 10 Vertically
),
),],
shape: BoxShape.circle,
image: DecorationImage(
fit: BoxFit.fill,
image: AssetImage('assets/images/gitam.png'),
),
),
//child: Image.asset('assets/images/gitam.png'),

),
SizedBox(width: 20,),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
),
//child: Image.asset('assets/images/gitam.png'),

),
),
],

),
),
Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text("GITAM University, Hyderabad",
style: TextStyle(fontSize: 26,fontWeight: FontWeight.bold),
Expand All @@ -125,10 +131,8 @@ class EduTab extends StatelessWidget {
),
],
),
],

),
),
),
SizedBox(height: 20,)
],
),
),
Expand All @@ -146,61 +150,66 @@ class EduMob extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Education', style: TextStyle(fontWeight: FontWeight.w600, fontSize: 32),),
SizedBox(height: 30,),
SizedBox(height: 10,),
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(

scrollDirection: Axis.vertical,
child: Center(
child: Column(
children: [
SizedBox(width: 15,),
Container(
margin: EdgeInsets.all(10.0),
padding: EdgeInsets.all(5.0),
height: 100,
width: 100,
alignment: Alignment.centerLeft,
decoration: BoxDecoration(

Center(
child: Container(
margin: EdgeInsets.all(10),
padding: EdgeInsets.all(5.0),
height: 100,
width: 100,
alignment: Alignment.center,
decoration: BoxDecoration(
boxShadow: [new BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 10.0,
spreadRadius: 5.0,
offset: Offset(
0.0, // Move to right 10 horizontally
5.0, // Move to bottom 10 Vertically
),
0.0, // Move to right 10 horizontally
10.0, // Move to bottom 10 Vertically
),
),],
shape: BoxShape.circle,
image: DecorationImage(
fit: BoxFit.fill,
image: AssetImage('assets/images/gitam.png'),
),
),
//child: Image.asset('assets/images/gitam.png'),

),
SizedBox(width: 20,),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("GITAM University, Hyderabad",
style: TextStyle(fontSize: 22,fontWeight: FontWeight.bold),
),
Text("Bachelor's in Computer Science Engineering",
style: TextStyle(fontSize: 18,fontWeight: FontWeight.w600),
),
Text("2017 - 2021",
style: TextStyle(fontSize: 17,),
),
Text("• Volunteered in NSS for two years",
style: TextStyle(fontSize: 17, color: Colors.grey),
),
],
),
),
//child: Image.asset('assets/images/gitam.png'),

),
),
],

),
),
),
Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text("GITAM University, Hyderabad",
style: TextStyle(fontSize: 22,fontWeight: FontWeight.bold),
),
Text("Bachelor's in Computer Science Engineering",
style: TextStyle(fontSize: 18,fontWeight: FontWeight.w600),
),
Text("2017 - 2021",
style: TextStyle(fontSize: 17,),
),
Text("• Volunteered in NSS for two years",
style: TextStyle(fontSize: 17, color: Colors.grey),
),
],
),
),
SizedBox(height: 20,)
],
),
);
Expand Down

0 comments on commit 9cb96b4

Please sign in to comment.