Skip to content

Commit 0226a57

Browse files
shoutout given to brittany
1 parent ef44cb3 commit 0226a57

File tree

7 files changed

+80
-14
lines changed

7 files changed

+80
-14
lines changed

lib/widgets/company_job_info.dart

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ class CompanyJobInfo extends StatelessWidget {
2525
height: 16,
2626
),
2727
_jobRole(
28-
'Developed and shipped CBO application used by community organization to help manage social risk factors on Android, iOS and Web',
28+
'Currently working on the Chat-SDK and building Design system components in Flutter, which is used in a variety of Innovaccer mobile products as well as a Telemedicine application.',
2929
context),
3030
SizedBox(
3131
height: 12,
3232
),
3333
_jobRole(
34-
'Communicate with multi-disciplinary teams of engineers, designers and product managers on a daily basis', context),
34+
'On Android, iOS, and the Web, I developed and released the CBO app, which is utilised by community organisations to assist manage social risk factors.',
35+
context),
3536
SizedBox(
3637
height: 12,
3738
),
38-
_jobRole(
39-
'Having multiple discussions and demos within team to explore in flutter and make our existing apps more scalable',
39+
_jobRole('On a daily basis, I communicate with multi-disciplinary teams of engineers, designers, and product managers.',
4040
context),
4141
SizedBox(
4242
height: 12,
4343
),
4444
_jobRole(
45-
'Currently working on design system components using flutter which will be used in multiple products in app at Innovaccer',
45+
'Multiple conversations and demos within the team to learn more about flutter and make our existing apps more scalable.',
4646
context),
4747
],
4848
);
@@ -59,16 +59,17 @@ class CompanyJobInfo extends StatelessWidget {
5959
height: 16,
6060
),
6161
_jobRole(
62-
'Builded 2.0 version of Zappfresh from Scratch under the mentorship of Tech Lead and Designer by following Agile methods.',
62+
'Under the guidance of a Tech Lead and a Designer, I built the 2.0 version of Zappfresh from the ground up using Agile methodologies.',
6363
context),
6464
SizedBox(
6565
height: 12,
6666
),
67-
_jobRole('Built and designed basic inventory app using Flutter used by people at various hubs of Zappfresh', context),
67+
_jobRole("Built and created a basic inventory app in Flutter that is utilised by people at Zappfresh's numerous hubs.",
68+
context),
6869
SizedBox(
6970
height: 12,
7071
),
71-
_jobRole('Responsible for the design, build, debug & maintenance of current app of Zappfresh', context),
72+
_jobRole("Responsible for the design, development, testing, and upkeep of Zappfresh's current app.", context),
7273
],
7374
);
7475
} else if (selectedIndex == 2) {

lib/widgets/email_widget.dart

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,30 @@ class _EmailWidgetState extends State<EmailWidget> {
7070
),
7171
),
7272
),
73+
SizedBox(
74+
height: 24,
75+
),
76+
!CommonFunction.isApp(context)
77+
? InkWell(
78+
onTap: () {
79+
CommonFunction.openFromUrl('https://brittanychiang.com/');
80+
},
81+
child: Tooltip(
82+
message: 'Shout-out to Brittany Chiang',
83+
textStyle: TextStyle(
84+
fontWeight: FontWeight.w400,
85+
fontSize: 12,
86+
color: Constants.green,
87+
fontFamily: 'FiraSans',
88+
),
89+
child: Icon(
90+
Icons.open_in_new,
91+
size: 20,
92+
color: Constants.lightestSlate,
93+
),
94+
),
95+
)
96+
: Container(),
7397
SizedBox(
7498
height: 16,
7599
),

lib/widgets/main_page/about_me_widget.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class AboutMeWidget extends StatelessWidget {
4444
height: 16,
4545
),
4646
Text(
47-
'I am currently developing mobile apps using Flutter and has delivered 10+ projects in mobile and web. \nI am currently working as Software Developer at Innovaccer and also do some side projects to enhance my skills in mobile.',
47+
"I'm now working on mobile apps with Flutter and have completed over ten mobile and web projects. \nI currently work at Innovaccer as a Software Developer and also doing some side projects to enhance my mobile skills.",
4848
style: TextStyle(
4949
fontSize: CommonFunction.isApp(context) ? 18 : 16,
5050
color: Constants.slate,
@@ -56,7 +56,7 @@ class AboutMeWidget extends StatelessWidget {
5656
height: 8,
5757
),
5858
Text(
59-
'I also love to produce music beats, investing sometime in learning and making beats using Fl Studio.',
59+
'I also enjoy producing music beats and have spent time learning how to use Fl Studio to do so.',
6060
style: TextStyle(
6161
fontSize: CommonFunction.isApp(context) ? 18 : 16,
6262
color: Constants.slate,
@@ -68,7 +68,7 @@ class AboutMeWidget extends StatelessWidget {
6868
height: 16,
6969
),
7070
Text(
71-
"Some technologies which I have worked on are:",
71+
"I've worked on the following technologies:",
7272
style: TextStyle(
7373
fontSize: CommonFunction.isApp(context) ? 18 : 16,
7474
color: Constants.slate,

lib/widgets/main_page/introduction.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Introduction extends StatelessWidget {
4848
height: 32,
4949
),
5050
Text(
51-
'I am a Software Developer based out of India specialized in building mobile apps. \nCurrently I am Fluttering!',
51+
"I am a Software Developer from India that specialises in developing mobile apps. \nI'm fluttering right now!",
5252
style: TextStyle(
5353
fontWeight: FontWeight.w600,
5454
fontSize: 16,

lib/widgets/other_noteworthy_projects/other_projects.dart

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'package:flutter/material.dart';
2+
import 'package:flutter_developer_portfolio/utils/common_functions.dart';
23
import 'package:flutter_developer_portfolio/utils/constants.dart';
34

45
import 'other_project_item.dart';
@@ -94,6 +95,46 @@ class _OtherProjectsState extends State<OtherProjects> {
9495
],
9596
),
9697
),
98+
CommonFunction.isApp(context)
99+
? Padding(
100+
padding: const EdgeInsets.only(top: 16),
101+
child: InkWell(
102+
onTap: () {
103+
CommonFunction.openFromUrl('https://brittanychiang.com/');
104+
},
105+
child: Card(
106+
color: Constants.slate,
107+
child: Center(
108+
child: Padding(
109+
padding: EdgeInsets.all(8.0),
110+
child: Row(
111+
mainAxisSize: MainAxisSize.min,
112+
children: [
113+
Text(
114+
'Shout-out to Brittany Chiang',
115+
style: TextStyle(
116+
fontSize: 16,
117+
fontWeight: FontWeight.w600,
118+
color: Constants.white,
119+
fontFamily: 'FiraSans',
120+
),
121+
),
122+
SizedBox(
123+
width: 8,
124+
),
125+
Icon(
126+
Icons.open_in_new,
127+
size: 20,
128+
color: Constants.green,
129+
),
130+
],
131+
),
132+
),
133+
),
134+
),
135+
),
136+
)
137+
: Container(),
97138
],
98139
);
99140
}

lib/widgets/social_handles/social_handle_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class _SocialHandleItemState extends State<SocialHandleItem> {
6262
top: _animatedPaddingValueTop,
6363
bottom: _animatedPaddingValueBottom,
6464
),
65-
duration: Duration(milliseconds: 100),
65+
duration: Duration(milliseconds: 200),
6666
child: SvgPicture.asset(
6767
'asset/${widget.assetName}.svg',
6868
width: _iconSize,

lib/widgets/web_app_bar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class WebAppBar extends StatelessWidget {
1313
return Container(
1414
color: Constants.navy,
1515
child: Padding(
16-
padding: const EdgeInsets.symmetric(horizontal: 32),
16+
padding: EdgeInsets.symmetric(horizontal: 32),
1717
child: Row(
1818
mainAxisAlignment: MainAxisAlignment.spaceBetween,
1919
children: [

0 commit comments

Comments
 (0)