0% found this document useful (0 votes)
12 views

alleditor

Uploaded by

zxcrator
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

alleditor

Uploaded by

zxcrator
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

import 'package:flutter/material.

dart';

void main() {
runApp(MaterialApp(
home: Home(),
debugShowCheckedModeBanner: false,));
}

class Home extends StatefulWidget {


@override
State<Home> createState() => _HomeState();
}

class _HomeState extends State<Home> {


@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage("images/newforapps.jpeg"),
fit: BoxFit.cover)
),
child: Padding(
padding: const EdgeInsets.only(top: 85.0, left: 30),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Row(
children: <Widget>[
CircleAvatar(
radius: 60,backgroundImage:
AssetImage("images/Snapchat88.jpg"),
),
SizedBox(
width: 30,
),
Column(
children: <Widget>[
Text(
"Aditya Mane",
style: TextStyle(fontSize: 25,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf" ,),
),
Text(
"Mobile App Developer",
style: TextStyle(fontSize: 15,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
)
],
),
SizedBox(
height: 30,
),
Padding(
padding: const EdgeInsets.only(left: 7.0),
child: Column(
children: <Widget>[
Row(
children: <Widget>[
Icon(
Icons.school_outlined,
color: Colors.white,
size: 40,
),
SizedBox(
width: 25,
),
Text(
"MIT-WPU ( MCA )",
style: TextStyle(fontSize: 20,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
),
SizedBox(height: 10,),
Row(
children: <Widget>[
Icon(
Icons.laptop,
color: Colors.white,
size: 40,
),
SizedBox(
width: 25,
),
Text(
"Portfolio App",
style: TextStyle(fontSize: 20,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
),
SizedBox(height: 10,),
Row(
children: <Widget>[
Icon(
Icons.add_location_alt_outlined,
color: Colors.white,
size: 40,
),
SizedBox(
width: 20,
),
Text(
"AT-POST-PUNE-411014",
style: TextStyle(fontSize: 20,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
),
SizedBox(height: 10,),
Row(
children: <Widget>[
Icon(
Icons.email_outlined,
color: Colors.white,
size: 40,
),
SizedBox(
width: 20,
),
Text(
"[email protected]",
style: TextStyle(fontSize: 20,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
),
SizedBox(height: 10,),
Row(
children: <Widget>[
Icon(
Icons.phone,
color: Colors.white,
size: 40,
),
SizedBox(
width: 25,
),
Text(
"+918983128612",
style: TextStyle(fontSize: 20,color:
Colors.white,fontFamily: "fonts/Kanit-Regular.ttf"),
),
],
),
SizedBox(height: 10,),
],
),
),
SizedBox(height: 30,),
Padding(
padding: const EdgeInsets.all(5.0),
child: Text("Passionate and detail-oriented Android Developer with
designing, developing, and managing mobile applications for the Android & IOS With
Flutter And Dart",style: TextStyle(fontSize: 20,color: Colors.white,fontFamily:
"fonts/Kanit-Regular.ttf"),),
),
Padding(
padding: const EdgeInsets.only(left: 25.0),
child: SizedBox( height: 20,),

),
Text(" Created By Aditya",style:
TextStyle(fontSize: 15,color: Colors.white,fontFamily: "fonts/Kanit-
Regular.ttf",),),

],
),
),
),
);
}
}

You might also like