clock_analog

Creator: coderz1093

Last updated:

0 purchases

clock_analog Image
clock_analog Images

Languages

Categories

Add to Cart

Description:

clock analog

Clock Analog #
Clock analog allow you select time of day(Time Picker) to your Flutter app without dialog box.
One can add it as widgets on screen and select time.
Installation #

Add the latest version of package to your pubspec.yaml (and rundart pub get):

dependencies:
clock_analog: ^0.0.4
copied to clipboard

Import the package and use it in your Flutter App.

import 'package:clock_analog/clock_analog.dart';
copied to clipboard
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) {

},
),
),
);
}
}
copied to clipboard
clock_analog #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.