This commit is contained in:
Hamza-Ayed
2023-10-15 17:42:26 +03:00
parent 642820c55b
commit 2105de243c
9 changed files with 43 additions and 15 deletions

View File

@@ -119,6 +119,12 @@ class HomeCaptain extends StatelessWidget {
'Total Duration: ${homeCaptainController.calculateTotalDuration()} seconds',
style: const TextStyle(fontSize: 20),
),
TextButton(
onPressed: () {
homeCaptainController.sendSMSToRecipents(
'hi from Sefer', ['+962798583052']);
},
child: const Text('send msg')),
],
),
),