contact developers screen

added profiles of two developers

fixes issue #190
This commit is contained in:
Nikki Goel
2021-03-19 12:59:17 +05:30
parent a34a836d6b
commit 5fb4c56f05
4 changed files with 4 additions and 5 deletions

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

View File

@@ -29,13 +29,13 @@ class ContactDeveloperScreen extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_buildProfile(
imagePath: 'assets/images/doclense.png',
imagePath: 'assets/images/team/smaranjit_ghose.png',
name: 'Smaranjit Ghose',
githubUrl: 'smaranjitghose',
linkedInUrl: 'smaranjitghose',
),
_buildProfile(
imagePath: 'assets/images/doclense.png',
imagePath: 'assets/images/team/anush_bhatia.png',
name: 'Anush Bhatia',
githubUrl: 'anushbhatia',
linkedInUrl: 'anushbhatia',
@@ -76,7 +76,7 @@ class ContactDeveloperScreen extends StatelessWidget {
borderRadius: BorderRadius.circular(20),
child: Image.asset(
imagePath,
fit: BoxFit.cover,
fit: BoxFit.contain,
)),
),
const SizedBox(height: height),
@@ -85,7 +85,6 @@ class ContactDeveloperScreen extends StatelessWidget {
style: const TextStyle(
fontSize: textSize,
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: height),
@@ -113,7 +112,6 @@ class ContactDeveloperScreen extends StatelessWidget {
onTap: () => _launchURL(link),
child: FaIcon(
icon,
color: Colors.blue[100],
size: 40,
));

View File

@@ -81,6 +81,7 @@ flutter:
- assets/images/
- assets/
- assets/aboutPage/
- assets/images/team/
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see