Skip to content

Commit

Permalink
🏡 redesigned home page
Browse files Browse the repository at this point in the history
  • Loading branch information
shashiben committed Apr 20, 2021
1 parent 472af4c commit 351c3f1
Show file tree
Hide file tree
Showing 10 changed files with 184 additions and 237 deletions.
Binary file added assets/images/android.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/design.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/ml.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/sk_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions lib/app/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ const Color failureColor = Colors.red;
mixin lightColor {
//** Theme Colors
static Color primaryColor = Color(0xFF2D4CC8);
static Color backgroundColor = Color(0xFFe6e7ee);
static Color surfaceColor = Color(0xFFe5e6ed);
static Color backgroundColor = Color(0xFFD7E5F0);
static Color surfaceColor = Color(0xFFD7E5F0);

//** Text Colors
static Color textPrimaryColor = Color(0xFF31344b);
static Color textSecondaryColor = Color(0xFF53577b);
static Color textPrimaryColor = Color(0xFF324B72);
static Color textSecondaryColor = Color(0xFFD7E3F1);

static Color dividerColor = Colors.black54;
}
Expand Down
134 changes: 3 additions & 131 deletions lib/ui/views/about me/about_view_all_size.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class AboutViewResponsive extends StatelessWidget {
body: SingleChildScrollView(
child: BootstrapContainer(
children: [

Text(
"Wow, a whole page about my journey!",
style: uiHelpers.headline,
Expand All @@ -47,8 +46,8 @@ class AboutViewResponsive extends StatelessWidget {
),
uiHelpers.verticalSpaceLow,
Text(PersonalDetails.intro,
style: uiHelpers.body.copyWith(
color: uiHelpers.textSecondaryColor)),
style: uiHelpers.body
.copyWith(color: uiHelpers.textSecondaryColor)),
uiHelpers.verticalSpaceMedium,
Text(
"Technical Skills",
Expand Down Expand Up @@ -134,133 +133,6 @@ class AboutViewResponsive extends StatelessWidget {
],
fluid: true,
),
)
// Container(
// padding: const EdgeInsets.symmetric(horizontal: 20),
// child: SingleChildScrollView(
// child: Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// SizedBox(
// height: 30,
// ),
// Text(
// "Wow, a whole page about my journey!",
// style: uiHelpers.headline.copyWith(fontSize: 50),
// ),
// uiHelpers.verticalSpaceHigh,
// Row(
// mainAxisAlignment: MainAxisAlignment.start,
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// Container(
// width: uiHelpers.width * 0.4,
// child: Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// Text(
// "Me,talking about myself",
// style: uiHelpers.title.copyWith(fontSize: 24),
// ),
// Container(
// width: uiHelpers.width * 0.1,
// child: DividerWidget(
// width: uiHelpers.width * 0.1,
// dividerColor: uiHelpers.primaryColor,
// ),
// ),
// uiHelpers.verticalSpaceLow,
// Container(
// width: uiHelpers.width * 0.45,
// child: Text(PersonalDetails.intro,
// style: uiHelpers.body.copyWith(
// color: uiHelpers.textSecondaryColor)),
// ),
// uiHelpers.verticalSpaceMedium,
// Text(
// "Technical Skills",
// style: uiHelpers.title.copyWith(fontSize: 24),
// ),
// Container(
// width: uiHelpers.width * 0.07,
// child: DividerWidget(
// width: uiHelpers.width * 0.1,
// dividerColor: uiHelpers.primaryColor,
// ),
// ),
// uiHelpers.verticalSpaceLow,
// SkillWidget(),
// uiHelpers.verticalSpaceMedium,
// Text(
// "Featured Skills",
// style: uiHelpers.title.copyWith(fontSize: 24),
// ),
// Container(
// width: uiHelpers.width * 0.05,
// child: DividerWidget(
// width: uiHelpers.width * 0.1,
// dividerColor: uiHelpers.primaryColor,
// ),
// ),
// uiHelpers.verticalSpaceLow,
// FeaturedSkillWidget(),
// ],
// ),
// ),
// SizedBox(
// width: uiHelpers.width * 0.08,
// ),
// Expanded(
// child: Container(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.start,
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// Text(
// "Education",
// style: uiHelpers.title.copyWith(fontSize: 24),
// ),
// Container(
// width: uiHelpers.width * 0.04,
// child: DividerWidget(
// width: uiHelpers.width * 0.03,
// dividerColor: uiHelpers.primaryColor,
// ),
// ),
// SizedBox(height: 15),
// Timeline(
// indicatorColor: uiHelpers.primaryColor,
// lineColor: uiHelpers.textSecondaryColor,
// shrinkWrap: true,
// itemGap: 25,
// lineGap: 0,
// children: [
// EducationDetailsTimelineWidget(
// name: EducationDetails.universityName,
// stream: EducationDetails.universityStream,
// year: EducationDetails.universityTimeline,
// percentage:
// EducationDetails.universityPercentage),
// EducationDetailsTimelineWidget(
// name: EducationDetails.collegeName,
// stream: EducationDetails.collegeStream,
// year: EducationDetails.collegeTimeline,
// percentage: EducationDetails.collegePercentage),
// EducationDetailsTimelineWidget(
// name: EducationDetails.schoolName,
// stream: EducationDetails.schoolStream,
// year: EducationDetails.schoolTimeline,
// percentage: EducationDetails.schoolPercentage),
// ])
// ],
// )))
// ],
// ),
// uiHelpers.verticalSpaceMedium,
// ],
// ),
// ),
// ),
);
));
}
}
Loading

0 comments on commit 351c3f1

Please sign in to comment.