datetime_loop 1.0.1
datetime_loop: ^1.0.1 copied to clipboard
A Flutter package that provides a widget to listen to the system's datetime and trigger a rebuild based on the specified time unit.
datetime_loop #
A Flutter package that provides a widget to listen to the system's datetime and trigger a rebuild based on the specified time unit.
Installation #
Add the following to your pubspec.yaml
file:
dependencies:
datetime_loop: ^1.0.0
Then run:
flutter pub get
Usage #
Import the package in your Dart code:
import 'package:datetime_loop/datetime_loop.dart';
Use the DateTimeLoopBuilder widget in your Flutter app:
DateTimeLoopBuilder(
timeUnit: TimeUnit.seconds,
builder: (context, dateTime, child) {
return Column(
children: [
Container(
width: 200,
height: 200,
color: Color((math.Random().nextDouble() * 0xFFFFFF).toInt()).withOpacity(1.0),
),
Text('$dateTime'),
],
);
}
)
Issues and Feedback #
Please file any issues or feedback here.