import 'package:flutter/cupertino.dart' ; import 'package:flutter/material.dart' ; void main () { runApp( my_app ()) ; } class my_app extends StatelessWidget { const my_app({Key? key}) : super (key: key) ; @override Widget build (BuildContext context) { return MaterialApp ( home: Scaffold ( backgroundColor: Colors. teal , /*appBar: AppBar( title: Center( child: Text('Shuvo' ) ), ),*/ //backgroundColor: Colors.black54, body: SafeArea ( child: Center ( child: Column ( children: <Widget>[ CircleAvatar ( radius: 50 , backgroundImage: AssetImage ( 'images/shuvo.jpg' ) , ) , Text ( 'Md. Sohorafuzzaman' , style: TextStyle ( fontSize: 25 , fontWeight: FontWeight. bold , ...