19 lines
397 B
Dart
19 lines
397 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HolidayScreen extends StatelessWidget {
|
|
const HolidayScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text(
|
|
'الإجازة',
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |