تطوير تطبيقات Development Tutorials, Guides & Insights
Unlock 1+ expert-curated تطوير تطبيقات tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your تطوير تطبيقات skills on DeveloperBreeze.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
Tutorial
dart
دليل شامل: تطوير تطبيقات باستخدام إطار العمل Flutter
افتح الملف 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),
),
),
),
);
}
}Dec 12, 2024
Read More