stless yaz enter a bas
import 'package:flutter/material.dart';
//void main() =>runApp( new MaterialApp(home: new Text('Merhaba Dünya')));
void main() {
runApp(MyApp());
}
// STLESS yaz enter a bas
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(backgroundColor: Colors.orange,//Colors.red,//Colors.blue,
title: Text('Uygulama Bar')
),
body: Center(child: Text('Herkese Merhaba')),
),
);
}
}
Yorumlar
Yorum Gönder