clock_analog 0.0.1 copy "clock_analog: ^0.0.1" to clipboard
clock_analog: ^0.0.1 copied to clipboard

outdated

Clock Analog Flutter.

Fancy Containers #

Fancy container package lets you add a beautiful gradient container to your Flutter app.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  clock_analog: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:clock_analog/clock_analog.dart';

Example #

class ClockAnalog extends StatelessWidget {
  const ClockAnalog({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child:ClockAnalog(
          initialTime: TimeOfDay.now(),
          onChanged: (value) {

          },
        ),
      ),
    );
  }
}
7
likes
0
points
50
downloads

Publisher

unverified uploader

Weekly Downloads

Clock Analog Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on clock_analog