تمرين إعادة البناء
Business Card App
أعد كتابة تطبيق Flutter صغير يعرض بطاقة تعريف بسيطة.
flutter
~10 دقيقة
مبتدئ
أعد بناء الكود
Rebuild
هذا هو الكود. اكتبه بنفسك.
الكود المرجعي
import 'package:flutter/material.dart';
void main() {
runApp(const BusinessCardApp());
}
class BusinessCardApp extends StatelessWidget {
const BusinessCardApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Business Card',
home: Scaffold(
backgroundColor: const Color(0xFFF6F1E6),
body: Center(
child: Container(
width: 320,
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(12),
),
child: const Column(
mainAxisSize: MainAxisSize.min,
children: [
CircleAvatar(radius: 42, child: Text('AW')),
SizedBox(height: 16),
Text(
'Aziz Wares',
style: TextStyle(fontSize: 26, fontWeight: FontWeight.bold),
),
SizedBox(height: 8),
Text('Flutter Developer'),
SizedBox(height: 16),
Text('[email protected]'),
],
),
),
),
),
);
}
}اكتب هنا