diff --git a/Contributers.md b/Contributers.md index c2b0808..db0fe6d 100644 --- a/Contributers.md +++ b/Contributers.md @@ -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. diff --git a/images/pritam.jpeg b/images/pritam.jpeg new file mode 100644 index 0000000..518d10d Binary files /dev/null and b/images/pritam.jpeg differ diff --git a/lib/main.dart b/lib/main.dart index 7701f3b..b26d78d 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -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,),), diff --git a/lib/pritam.dart b/lib/pritam.dart new file mode 100644 index 0000000..57478af --- /dev/null +++ b/lib/pritam.dart @@ -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: [ + 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'), + ), + )) + ], + )), + ), + ); + } +}