All Projects → furkantektas → Analog_clock

furkantektas / Analog_clock

Licence: mit
⌚️Analog Clock widget for Flutter ⏰

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Analog clock

Flutter statusbarcolor
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.
Stars: ✭ 203 (+49.26%)
Mutual labels:  plugin, flutter-plugin
Flutter appavailability
A Flutter plugin that allows you to check if an app is installed/enabled, launch an app and get the list of installed apps.
Stars: ✭ 63 (-53.68%)
Mutual labels:  plugin, flutter-plugin
Plugins
Plugins for Flutter maintained by the Flutter team
Stars: ✭ 14,956 (+10897.06%)
Mutual labels:  plugin, flutter-plugin
Flutter inappwebview
A Flutter plugin that allows you to add an inline webview, to use a headless webview, and to open an in-app browser window.
Stars: ✭ 1,259 (+825.74%)
Mutual labels:  plugin, flutter-plugin
Flutter Woocommerce Api
WooCommerce API in Flutter, connect and start developing with the available endpoints like get products, create orders and more.
Stars: ✭ 31 (-77.21%)
Mutual labels:  plugin, flutter-plugin
Plugins
go-flutter implementations for popular Flutter plugins
Stars: ✭ 125 (-8.09%)
Mutual labels:  plugin, flutter-plugin
Voicewp
Create Alexa Skills through WordPress
Stars: ✭ 132 (-2.94%)
Mutual labels:  plugin
Godot Engine.github Integration
A Godot Engine addon to integrate a native GitHub client inside Godot's Editor. Manage your project without even opening your browser!
Stars: ✭ 134 (-1.47%)
Mutual labels:  plugin
Poetry Dynamic Versioning
Plugin for Poetry to enable dynamic versioning based on VCS tags
Stars: ✭ 131 (-3.68%)
Mutual labels:  plugin
Baseelements Plugin
FileMaker Pro plugin used for BaseElements to provide file, dialog and XSLT functions.
Stars: ✭ 130 (-4.41%)
Mutual labels:  plugin
Resharper Angularjs
ReSharper plugin for AngularJS support
Stars: ✭ 135 (-0.74%)
Mutual labels:  plugin
Filepond
🌊 A flexible and fun JavaScript file upload library
Stars: ✭ 11,869 (+8627.21%)
Mutual labels:  plugin
Flutter geocoder
Flutter plugin for forward and reverse geocoding
Stars: ✭ 134 (-1.47%)
Mutual labels:  plugin
Autoenv
Autoenv for zsh
Stars: ✭ 131 (-3.68%)
Mutual labels:  plugin
Streamdeck Tools
The Stream Deck Tools library wraps all the communication with the Stream Deck app, allowing you to focus on actually writing the Plugin's logic
Stars: ✭ 133 (-2.21%)
Mutual labels:  plugin
Plugin.video.catchuptvandmore
Replay, Live TV and websites videos addon for Kodi
Stars: ✭ 131 (-3.68%)
Mutual labels:  plugin
Ds4vita
Stars: ✭ 135 (-0.74%)
Mutual labels:  plugin
Kk plugins
Plugins for Koikatsu, EmotionCreators, AI Girl, and Honey Select 2
Stars: ✭ 129 (-5.15%)
Mutual labels:  plugin
Coremediaio Dal Example
Apple's CoreMediaIO DAL plugin example - modernized
Stars: ✭ 132 (-2.94%)
Mutual labels:  plugin
Leapunreal
Leap Motion SDK for the Unreal Engine.
Stars: ✭ 134 (-1.47%)
Mutual labels:  plugin

Flutter Analog Clock Widget

pub package

Clean and fully customizable analog clock widget.

Flutter Analog Clock Screenshot

Installation

In your pubspec.yaml file within your Flutter Project:

dependencies:
  analog_clock: ^0.0.1

Features

  • Modern and clean analog clock interface.
  • Fully customizable.
  • Live clock.
  • Custom datetime.

Usage

import 'package:analog_clock/analog_clock.dart';


AnalogClock(
	decoration: BoxDecoration(
	    border: Border.all(width: 2.0, color: Colors.black),
	    color: Colors.transparent,
	    shape: BoxShape.circle),
	width: 150.0,
	isLive: true,
	hourHandColor: Colors.black,
	minuteHandColor: Colors.black,
	showSecondHand: false,
	numberColor: Colors.black87,
	showNumbers: true,
	textScaleFactor: 1.4,
	showTicks: false,
	showDigitalClock: false,
	datetime: DateTime(2019, 1, 1, 9, 12, 15),
	);

Parameters

Flutter Analog Clock Parameters

Example

Demo app can be found in the example/ folder.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].