04_EXP_02.pdf (1)
04_EXP_02.pdf (1)
Experiment No.2
Program:
main.dart
import 'package:experiment_01/src/profile_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const ProfilePage());
const ProfilePage({super.key});
@override
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
Widget build(BuildContext context){
return MaterialApp(
debugShowCheckedModeBanner: false,
);
src/profile_page.dart
import 'package:flutter/material.dart';
const ProfilePageScreen({super.key});
@override
return Scaffold(
appBar: AppBar(
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
title: Text(
"Profile Page",
style: TextStyle(
),
centerTitle: true,
backgroundColor: bgColor,
),
body: Padding(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Center(
child: CircleAvatar(
radius: 50,
backgroundImage:
AssetImage("assets/images/male_profile.png"),
backgroundColor: Colors.blue[300],
),
),
const SizedBox(
height: 25.0,
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
),
Text(
'NAME',
style: TextStyle(
color: Colors.grey,
letterSpacing: 2.0,
fontSize: 15,
),
),
const SizedBox(
height: 8.0,
),
Text(
style: TextStyle(
color: Colors.blue[300],
fontSize: 20,
fontWeight: FontWeight.bold),
),
const SizedBox(
height: 25.0,
),
Text(
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
'AGE',
style: TextStyle(
color: Colors.grey,
letterSpacing: 2.0,
fontSize: 15,
),
),
const SizedBox(
height: 8.0,
),
Text(
"21",
style: TextStyle(
color: Colors.blue[300],
fontSize: 20,
fontWeight: FontWeight.bold),
),
const SizedBox(
height: 25.0,
),
Text(
'CONTACT',
style: TextStyle(
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
color: Colors.grey,
letterSpacing: 2.0,
fontSize: 15,
),
),
const SizedBox(
height: 8.0,
),
Text(
"9867977146",
style: TextStyle(
color: Colors.blue[300],
fontSize: 20,
fontWeight: FontWeight.bold),
),
const SizedBox(
height: 25.0,
),
Icon(Icons.email_rounded),
const SizedBox(
height: 8.0,
),
Text(
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070
'[email protected]',
style: TextStyle(
color: Colors.blue[300],
letterSpacing: 2.0,
fontSize: 15,
fontWeight: FontWeight.bold),
],
),
));
Output:
Don Bosco Institute of Technology Kurla (W),
Mumbai 400 070