افتح الملف lib/main.dart
وقم بتعديله لإظهار رسالة ترحيب:
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('مرحبًا بك في Flutter!'),
),
body: Center(
child: Text(
'أول تطبيق Flutter الخاص بك',
style: TextStyle(fontSize: 24),
),
),
),
);
}
}