How do I implement the current time into Text format? I feel like it should be fairly simple but struggling to do so.
Basic example;
How do I implement the current time into Text format? I feel like it should be fairly simple but struggling to do so.
Basic example;
Using the answer here and changing it a bit:-
You can try the following:
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
void main() {
runApp(TabBarDemo());
}
class TabBarDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
DateTime now = DateTime.now();
String formattedDate = DateFormat('kk:mm:ss \n EEE d MMM').format(now);
return MaterialApp(
home: DefaultTabController(
length: 3,
child: Scaffold(
appBar: AppBar(
bottom: TabBar(
tabs: [
Tab(icon: Icon(Icons.access_alarm),text: "Alarm",),
Tab(icon: Icon(Icons.access_time),text:"Clock" ,),
Tab(icon: Icon(Icons.timer),text:"Timer"),
],
),
title: Text('Tabs Demo'),backgroundColor: Colors.black,
),
body: TabBarView(
children: [
Icon(Icons.access_alarm),
Center(child: Text(formattedDate,textAlign: TextAlign.center,style: new TextStyle(fontWeight: FontWeight.bold,fontSize: 25.0),)),
Icon(Icons.timer),
],
),
),
),
);
}
}
Should give you this:
In flutter 1.20 :
DateTime now = DateTime.now();
print(now.hour.toString() + ":" + now.minute.toString() + ":" + now.second.toString());
To get the current Time in AM/PM format.
dynamic currentTime = DateFormat.jm().format(DateTime.now());
var now = DateTime.now();
var formatterDate = DateFormat('dd/MM/yy');
var formatterTime = DateFormat('kk:mm');
String actualDate = formatterDate.format(now);
String actualTime = formatterTime.format(now);
To set a continuous running clock:
void initState() {
_timeString = _formatTime(DateTime.now());
Timer.periodic(const Duration(seconds: 1), (Timer t) => _getTimeString());
super.initState();
}
Then use to get time:
_getTimeString() {
final DateTime now = DateTime.now();
final String formattedTime = _formatTime(now);
setState(() {
_timeString = formattedTime;
});
}
Use to format time:
String _formatTime(DateTime dateTime) {
return DateFormat('hh:mm:ss').format(dateTime);
}
To display the time, create a text widget and use
'$_timeString'
to display continuously updating clock.
pick a exact time in flutter app and put in local notification package...full detail guide.//(alarm App)enter image description here