material_clock 0.0.2
material_clock: ^0.0.2 copied to clipboard
Awesome material analog clock for your projects!
π Material Clock π #
english ΡΡΡΡΠΊΠΈΠΉ
Chic and awesome watch for your application!
How to install #
Open pubspec.yaml
and add to dependency
name of this package:
dependencies:
material_clock: any
copied to clipboard
After this, run command:
$ flutter pub get
copied to clipboard
Voila! Installation is done!
How to use #
Code examples are here
Basically, you jest need to create new widget, and set some parameters:
import 'package:material_clock/material_clock.dart' as materialClock;
materialClock.Clock(
theme: Brightness.dark, // Theme of clocks. By default it is set to `Brightness.light`
// for supporting dark and light modes of iOS and Android.
backgroundStyle: PaintingStyle.stroke, // Background style of widget. It can be only `PaintingStyle.fill` or `PanintingStyle.stroke`
secondHandColor: Colors.red, // Color of your second hand. By default it is `Colors.redAccent`
alignment = Alignment.center, // Aligment of widget. Could be useful if parameter `size` is setted.
live: true, // If true, than clocks will update every second. If false, than hands position will be fixed.
size: 400.0, // Size of your widget. By default it is `double.infinty`.
time: DateTime.now(), // Which time you want to render. By default it is current time.
);
copied to clipboard
Contributing #
Please read contributing guide if you want to help. And the help is very necessary!
Authors #
- Richard Cooper β ololosha228
License #
This project is licensed under the MIT License - see the LICENSE file for details