Hi,
I have created fun: HomeScreen() which extends to HomeScreenState().
I have used HomeScreenState() to return Timing And Date.
But the issue is I'm unable to format time for HH:MM (am or pm) and date to DD/MM/YYYY.
_currentTime(){
return "${DateTime.now().hour} : ${DateTime.now().minute}";
}
_currentDate(){
return "${DateTime.now().day}.${DateTime.now().month}.${DateTime.now().year}";
}
I want this to be in required format.