Skip to content

Instantly share code, notes, and snippets.

@jayanthjj
Last active February 27, 2020 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayanthjj/53fe98f3984e8b70dcfd0c784653e5fb to your computer and use it in GitHub Desktop.
Save jayanthjj/53fe98f3984e8b70dcfd0c784653e5fb to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Colors.black,
body: SafeArea(
child: Column(
children: <Widget>[
SizedBox(height: 30.0),
CircleAvatar(
radius: 100.0,
backgroundImage: AssetImage('images/JJ.jpg'),
),
SizedBox(height: 10.0),
Text(
"Jayanth Jayadevan",
style: TextStyle(
fontFamily: 'Solway',
fontSize: 30.0,
color: Colors.white,
),
),
SizedBox(height: 10.0),
Text(
"National Institute of Technology",
style: TextStyle(
fontFamily: 'Merriweather',
color: Colors.white,
fontSize: 22.0,
),
),
Text(
"Calicut",
style: TextStyle(
fontFamily: 'Merriweather',
fontSize: 22.0,
color: Colors.white,
),
),
SizedBox(height: 10.0),
Text(
"Python | C++ | Flutter | SQL | ML",
style: TextStyle(
fontFamily: 'Merriweather',
fontSize: 20.0,
color: Colors.white,
),
),
Text(
"Developer",
style: TextStyle(
fontFamily: 'Merriweather',
fontSize: 21.0,
color: Colors.white,
),
),
SizedBox(
width: 150.0,
child: Divider(
color: Colors.white,
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(50, 0, 20, 0),
child: Row(
children: <Widget>[
Icon(
Icons.call,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 20.0,
),
Text(
"+91-9961133071",
style: TextStyle(
fontSize: 23.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(5, 0, 5, 0),
child: Row(
children: <Widget>[
Icon(
Icons.email,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 20.0,
),
Text(
"jayanthjayadevan98@gmail.com",
style: TextStyle(
fontSize: 20.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(40, 0, 5, 0),
child: Row(
children: <Widget>[
Icon(
Icons.device_hub,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 15.0,
),
Text(
"github.com/jayanthj737",
style: TextStyle(
fontSize: 20.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(1, 0, 1, 0),
child: Row(
children: <Widget>[
Icon(
Icons.domain,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 5.0,
),
Text(
"linkedin.com/in/jayanthjayadevan",
style: TextStyle(
fontSize: 20.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(5, 0, 5, 0),
child: Row(
children: <Widget>[
Icon(
Icons.check_circle,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 17.0,
),
Text(
"https://twitter.com/jayanth_j737",
style: TextStyle(
fontSize: 20.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
Container(
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.fromLTRB(25, 0, 5, 0),
child: Row(
children: <Widget>[
Icon(
Icons.image,
size: 30.0,
color: Colors.white,
),
SizedBox(
width: 17.0,
),
Text(
"instagram.com/jayanth._.j7",
style: TextStyle(
fontSize: 20.0,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
],
),
),
],
),
),
),
);
}
}
name: portfolio_app
description: A new Flutter application.
version: 1.0.0+1
environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
url_launcher: ^4.0.1
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
# To add assets to your application, add an assets section, like this:
assets:
- images/JJ.jpg
fonts:
- family: Solway
fonts:
- asset: fonts/Solway-Medium.ttf
- family: Merriweather
fonts:
- asset: fonts/Merriweather-Regular.ttf
@jayanthjj
Copy link
Author

Flutter-Dart Portfolio App

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment