We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to add an image as background in the Flutter Date Range Picker (SfDateRangePicker)


In the Flutter date range picker, you can add the image as background for the picker. You need to set the picker backgroundColor property value as transparent for showing background image.

import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_datepicker/datepicker.dart';
 
void main() => runApp(Background_Image());
 
class Background_Image extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
            body: SafeArea(
          child: Card(
            margin: const EdgeInsets.fromLTRB(50, 150, 50, 150),
            child: Container(
                constraints: BoxConstraints.expand(),
                decoration: BoxDecoration(
                    image: DecorationImage(
                        image: AssetImage("icons/image.png"),
                        fit: BoxFit.cover)),
                child: SfDateRangePicker(
                  headerStyle: DateRangePickerHeaderStyle(
                      textStyle: TextStyle(color: Colors.white)),
                  monthViewSettings: DateRangePickerMonthViewSettings(
                      viewHeaderStyle: DateRangePickerViewHeaderStyle(
                          textStyle: TextStyle(color: Colors.white))),
                  backgroundColor: Colors.transparent,
                  monthCellStyle: DateRangePickerMonthCellStyle(
                      textStyle: TextStyle(color: Colors.white)),
                  yearCellStyle: DateRangePickerYearCellStyle(
                      textStyle: TextStyle(color: Colors.white),
                      leadingDatesTextStyle: TextStyle(color: Colors.white),
                      disabledDatesTextStyle: TextStyle(color: Colors.white)),
                )),
          ),
        )));
  }
}

View sample in GitHub

              Month view

month

                  Year view

year

            Decade view

decade

             Century view

century

 

ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile