Update: 2026-05-06 03:09:37

This commit is contained in:
Hamza-Ayed
2026-05-06 03:09:37 +03:00
parent d9d2edac47
commit 13c2f75432
2 changed files with 50 additions and 46 deletions

View File

@@ -39,7 +39,9 @@ class WhatsAppProxyService
$payload = [
"to" => $to,
"message" => $message
"message" => [
"text" => $message
]
];
$curl = curl_init();

View File

@@ -12,7 +12,8 @@ class PhoneInputView extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('تسجيل الدخول')),
body: Padding(
body: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(24.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
@@ -62,6 +63,7 @@ class PhoneInputView extends StatelessWidget {
],
),
),
),
);
}
}