DateRangePickerHeaderStyle class

Sets the style for customizing the SfDateRangePicker header view.

Allows to customize the textStyle, textAlign and backgroundColor of the header view in SfDateRangePicker.

See also:

Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfDateRangePicker(
         view: DateRangePickerView.month,
         headerStyle: DateRangePickerHeaderStyle(
           textAlign: TextAlign.left,
           textStyle: TextStyle(
               color: Colors.blue, fontSize: 18,
                    fontWeight: FontWeight.w400),
           backgroundColor: Colors.grey,
         ),
       ),
     ),
   );
 }

Mixed-in types
Annotations

Constructors

DateRangePickerHeaderStyle({TextAlign textAlign = TextAlign.left, Color? backgroundColor, TextStyle? textStyle})
Creates a header style for date range picker.
const

Properties

backgroundColor → Color?
The color which fills the SfDateRangePicker header view background.
final
hashCode → int
The hash code for this object.
no setteroverride
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
textAlign → TextAlign
How the text should be aligned horizontally in SfDateRangePicker header view.
final
textStyle → TextStyle?
The text style for the text in the SfDateRangePicker header view.
final

Methods

debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) → DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) → String
A string representation of this object.
inherited
toStringShort() → String
A brief description of this object, usually just the runtimeType and the hashCode.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
override