Spaces:
Build error
Build error
File size: 325 Bytes
39499f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Settings")),
body: Center(
child: Text("إعدادات التطبيق قيد التطوير."),
),
);
}
} |