Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated a DEV profile for Pritam #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Contributers.md
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ Welcome to the list of people who contributed to this repo 💥
1. [Alok Kuamr](https://github.com/alokkumax)

## General Contributors below:
1.
1.[Pritam Paul](https://github.com/Prtmplish)
2.
3.
4.
Binary file added images/pritam.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ import 'package:swipetodlt/aditya.dart';
import 'package:swipetodlt/alokx.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:swipetodlt/deep.dart';
import 'package:swipetodlt/pritam.dart';

void main() {
runApp(new Directionality(textDirection: TextDirection.ltr, child: MyApp()));
@@ -29,6 +30,7 @@ class MyApp extends StatelessWidget {
abhi(),
aditya(),
deep(),
pritam(),
Container(child: Center(
child: Text("Add Yourself as a App-Dev Contributer", style: GoogleFonts.inter(fontSize: 38,
color: Colors.white,),),
77 changes: 77 additions & 0 deletions lib/pritam.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

class pritam extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Color(0xff177892),
body: SafeArea(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CircleAvatar(
radius: 70.0,
backgroundImage: NetworkImage("images/pritam.jpeg"),
),
SizedBox(height: 15,),
Text(
'Pritam Paul',
style: GoogleFonts.inter(fontSize: 33,
color: Colors.white,
fontWeight: FontWeight.w400),
),
SizedBox(height: 5,),
Text(
'Flutter Developer',
style: GoogleFonts.inter(fontSize: 20,
color: Colors.white60),
),
SizedBox(
height: 20.0,
width: 150.0,
child: Divider(
color: Colors.white60,
),
),
SizedBox(height: 15,),
Container(
child: Card(
margin: EdgeInsets.symmetric(vertical: 5.0, horizontal: 25.0),
child: ListTile(
leading: Icon(
Icons.phone,
color: Colors.blueGrey[900],
),
title: Text(
'+91 96798 74114',
style: TextStyle(
color: Colors.blueGrey[900],
fontFamily: 'Source Sans Pro',
fontSize: 20.0,
),
),
)),
),
Card(
margin: EdgeInsets.symmetric(vertical: 10.0, horizontal: 25.0),
child: ListTile(
leading: Icon(
Icons.email,
color: Colors.blueGrey[900],
),
title: Text(
'prtmplish@gmail.com',
style: TextStyle(
fontSize: 20.0,
color: Colors.blueGrey[900],
fontFamily: 'Source Sans Pro'),
),
))
],
)),
),
);
}
}