time_text 0.1.1 time_text: ^0.1.1 copied to clipboard
A time text widget. You can use it to show current time.
time_text #
A time text widget.
Getting Started #
import 'package:flutter/material.dart';
import 'package:time_text/time_text.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: TimeText(),
),
),
);
}
}