datetime_loop 1.0.1 copy "datetime_loop: ^1.0.1" to clipboard
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.

10
likes
0
points
197
downloads

Publisher

verified publishertkantira.com

Weekly Downloads

A Flutter package that provides a widget to listen to the system's datetime and trigger a rebuild based on the specified time unit.

Repository (GitHub)
View/report issues

Topics

#widget

License

unknown (license)

Dependencies

flutter

More

Packages that depend on datetime_loop