Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.5 KB

README.md

File metadata and controls

59 lines (42 loc) · 1.5 KB

analog_time_picker package for Flutter

pub package

A Flutter package for iOS and Android for picking last seven dates and time with analog view.

Demo

Installation

First, add analog_time_picker as a dependency in your pubspec.yaml file.

iOS

No configuration required - the plugin should work out of the box.

Android

No configuration required - the plugin should work out of the box.

Code for the analog day time picker

import 'package:analog_time_picker/analog_time_picker.dart';


class AnalogDayPick extends StatelessWidget{
 Map<String, DateTime> _dateTime = new Map();
 
  @override
  Widget build(BuildContext context) {
    return AnalogTimePicker(
                           onChanged: getDayTime,
                         );
  }
 void getDayTime(Map value) {
     _dateTime = value;
   }
}

Code for the Full page Analog day time picker widget

import 'package:analog_time_picker/full_page_analog_time_picker.dart';

class FullPageClock extends StatelessWidget {
  final Map mapData;
  const FullPageClock({Key key, this.mapData}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return FullPageAnalogTimePicker(
      mapData: mapData,     
      route: "/sixth",
    );
  }
}