v1.0.3flutter_analog_clock
एक सरल, अत्यधिक कस्टमाइजेबल एनालॉग घड़ी विजेट। इस विजेट के माध्यम से आप घड़ी के पृष्ठभूमि, डायल, चिह्नों और हैंड्स को कस्टमाइज कर सकते हैं।
एक सरल, अत्यधिक कस्टमाइजेबल एनालॉग घड़ी विजेट। इस विजेट के माध्यम से आप घड़ी के पृष्ठभूमि, डायल, चिह्नों और हैंड्स को कस्टमाइज कर सकते हैं।
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.1यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A simple, highly customizable analog clock widget. This widget enables you to customize the clock's background, dial, markings, and hands.
https://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot_v1.gif https://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot_v2.gif
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
flutter_analog_clock: ^1.0.3
In your library add the following import:
import 'package:flutter_analog_clock/flutter_analog_clock.dart';
https://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot01.jpghttps://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot02.jpg
const AnalogClock()
const AnalogClock.dark()
https://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot03.jpghttps://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot04.jpg
Container(
decoration: const BoxDecoration(
image: DecorationImage(image: AssetImage('assets/dial01.webp')),
),
child: const AnalogClock(
dialColor: null,
markingColor: null,
hourNumberColor: null,
secondHandColor: null,
),
),
https://raw.githubusercontent.com/conghaonet/flutter_analog_clock/HEAD/screenshots/screenshot05.jpg
AnalogClock(
dateTime: DateTime(2022, 10, 24, 10, 12, 07),
isKeepTime: false,
child: const Align(
alignment: FractionalOffset(0.5, 0.75),
child: Text('GMT-8'),
),
),
AnalogClock(
dateTime: DateTime.now(),
isKeepTime: true,
dialColor: Colors.white,
dialBorderColor: Colors.black,
dialBorderWidthFactor: 0.02,
markingColor: Colors.black,
markingRadiusFactor: 1.0,
markingWidthFactor: 1.0,
hourNumberColor: Colors.black,
hourNumbers: const ['', '', '3', '', '', '6', '', '', '9', '', '', '12'],
hourNumberSizeFactor: 1.0,
hourNumberRadiusFactor: 1.0,
hourHandColor: Colors.black,
hourHandWidthFactor: 1.0,
hourHandLengthFactor: 1.0,
minuteHandColor: Colors.black,
minuteHandWidthFactor: 1.0,
minuteHandLengthFactor: 1.0,
secondHandColor: Colors.black,
secondHandWidthFactor: 1.0,
secondHandLengthFactor: 1.0,
centerPointColor: Colors.black,
centerPointWidthFactor: 1.0,
)
class ExampleSpecifyTime extends StatefulWidget {
const ExampleSpecifyTime({Key? key}) : super(key: key);
@override
State<ExampleSpecifyTime> createState() => _ExampleSpecifyTimeState();
}
class _ExampleSpecifyTimeState extends State<ExampleSpecifyTime> {
final GlobalKey<AnalogClockState> _analogClockKey = GlobalKey();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Analog clock'),
),
body: AnalogClock(
key: _analogClockKey,
dateTime: DateTime(2022, 10, 24, 1, 23, 45),
isKeepTime: false,
),
persistentFooterButtons: [
ElevatedButton(
onPressed: () {
_analogClockKey.currentState!.dateTime = DateTime.now();
},
child: const Text('Now'),
),
ElevatedButton(
onPressed: () {
_analogClockKey.currentState!.isKeepTime = true;
},
child: const Text('Keep time'),
),
],
);
}
}
You can find all custom options here:
https://github.com/conghaonet/flutter_analog_clock/blob/master/example/lib/example.dart