Last updated:
0 purchases
horizontal time picker
horizontal_time_picker #
Easy to use, beautiful and customizable time strip component for Flutter
Getting Started #
Features #
✅ Custom time range (start & end Time)
✅ onTimeSelected, onTimeUnSelectedevents.
✅ Support custom ScrollController
✅ Custom [TextStyles] for text
✅ Custom [TextStyles] for text selected
✅ Default time cell Decoration
✅ Selected time cell Decoration
✅ Disabled time cell Decoration
Properties #
Property Name
Property Type
Description
Default value
TODO
e.g.
HorizontalTimePicker(
key: UniqueKey(),
startTimeInHour: 9,
endTimeInHour: 24,
dateForTime: DateTime.now(),
selectedTimeTextStyle: TextStyle(
color: Colors.white,
fontFamily: "Helvetica Neue",
fontWeight: FontWeight.w300,
fontSize: 16,
height: 1.0,
),
timeTextStyle: TextStyle(
color: Colors.black,
fontFamily: "Helvetica Neue",
fontWeight: FontWeight.w300,
fontSize: 16,
height: 1.0,
),
defaultDecoration: const BoxDecoration(
color: Colors.white,
border:
Border.fromBorderSide(BorderSide(
color: Color.fromARGB(255, 151, 151, 151),
width: 1,
style: BorderStyle.solid,
)),
borderRadius: BorderRadius.all(Radius.circular(5)),
),
selectedDecoration: const BoxDecoration(
color: Colors.black,
border:
Border.fromBorderSide(BorderSide(
color: Color.fromARGB(255, 151, 151, 151),
width: 1,
style: BorderStyle.solid,
)),
borderRadius: BorderRadius.all(Radius.circular(5)),
),
disabledDecoration: const BoxDecoration(
color: Colors.black26,
border:
Border.fromBorderSide(BorderSide(
color: Color.fromARGB(255, 151, 151, 151),
width: 1,
style: BorderStyle.solid,
)),
borderRadius: BorderRadius.all(Radius.circular(5)),
),
));
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.