analog_clock_for_flutter
beautiful flutter analog clocks.
usage
to use plugin, just import package import 'package:analog_clock_for_flutter/analog_clock.dart';
example
you can check example directory to know how to use it.
class myapp extends statelesswidget {
@override
widget build(buildcontext context) {
return materialapp(
debugshowcheckedmodebanner: false,
home: scaffold(
appbar: appbar(
title: text('clock demo'),
),
body:
center(child: sizedbox(child: flutteranalogclock(radius: 400)))),
);
}
}
getting started
this project is a starting point for a dart package, a library module containing code that can be shared easily across multiple flutter or dart projects.
for help getting started with flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full api reference.
Comments are closed.