void main() { runApp(BenimUyg()); } class BenimUyg extends StatelessWidget { const BenimUyg({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( backgroundColor: Colors.brown[300], body: SafeArea( child: Center( child: Column( mainAxisSize: MainAxisSize.min, children: const [ CircleAvatar( backgroundColor: Colors.lime, backgroundImage: AssetImage("assets/images/kahve.jpg"), radius: 70, ), Text( "Flutter Kahvecisi", style: TextStyle( fontSize: 40, fontFamily: "Courgette", color: Colors.brown, ), ), // ignore: unnecessary_const Text( "Çok Yakındasınız", style: GoogleFonts.pacifico( textStyle: TextStyle( color: Colors.lime, ), ), ), ], ), ), ), ), ); } }