Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.7 kB
1
Indexable
Never
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.teal,
        body: SafeArea(
            child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            CircleAvatar(
              radius: 50.0,
              backgroundImage: AssetImage('images/angela.jpg'),
            ),
            Text('Angela Yu',style: TextStyle( fontSize: 40.0, color: Colors.white, fontWeight: FontWeight.bold,),),
            Text('FLUTTER DEVELOPER',style: TextStyle(color: Colors.teal.shade100, fontSize: 20.0, letterSpacing: 2.5, fontWeight: FontWeight.bold,),),
            SizedBox(
              height: 20.0,
              width: 150.0,
              child: Divider( color: Colors.teal.shade100 ),
            ),
            Card(
                margin: EdgeInsets.symmetric(vertical: 10.0, horizontal: 25.0),
                child: ListTile(
                  leading: Icon(Icons.phone,color: Colors.teal, ),
                  title: Text('+44 123 456 789',style: TextStyle( color: Colors.teal.shade900, fontSize: 20.0,),),
                )),
            Card(
                margin: EdgeInsets.symmetric(vertical: 10.0, horizontal: 25.0),
                child: ListTile(
                  leading: Icon(Icons.email,color: Colors.teal,),
                  title: Text('angela@email.com',style: TextStyle(fontSize: 20.0,color: Colors.teal.shade900,fontFamily: 'Source Sans Pro'),),
                ))
          ],
        )),
      ),
    );
  }
}