Spaces:
Build error
Build error
import 'package:flutter/material.dart'; | |
class SettingsScreen extends StatelessWidget { | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: Text("Settings")), | |
body: Center( | |
child: Text("إعدادات التطبيق قيد التطوير."), | |
), | |
); | |
} | |
} |