/* If you are an engineer, please forgive me for the custom cursor. It's a nightmare, and mouse interactions are standard for a reason. Ultimately, the audience for this portfolio is recruiters, and I'm looking for "design" roles because nobody has a job code for UX Engineer. Feel free to email me at hi@andrewswank.com with your favorite emoji in the subject line. Thanks for poking around! ā¤ļøšŸ•ŠļøšŸ— */

Google Flights Mobile Datepicker

Developed a standardized date selection component that became the Material Design standard, handling complex travel booking scenarios while improving conversion rates.

Background

When Google was unifying its design language through Material Design, date selection remained inconsistent across products, even between Google Flights and Hotels.

In the realm of travel booking, there are only 2 critical user decisions: when & where.

With dates being half of the core decision criteria, we needed to get this fundamental interaction right.

Key challenges

  • add_circle
    Inconsistent date selection across Google products
  • add_circle
    Complex multi-city booking requirements
  • add_circle
    Scattered user experiences and duplicated engineering effort
  • add_circle
    Almost every travel booking site had developed their own unique approach

Outcomes

  • add_circle
    Adopted as the official Material Design standard across Google products
  • add_circle
    Selected by Material UI (MUI) open-source React library, benefitting billions of users worldwide
  • add_circle
    Prototypes for interactions and motion design reduced engineering implementation time by >50%

Business Impact

Standardization & Improved Operational Efficiency
  • add_circle
    Adopted as official Material Design standard
  • add_circle
    Created consistency across Google's product ecosystem
  • add_circle
    Deduplicated engineering efforts
Improved Conversion
  • add_circle
    Contributed to a +50% conversion rate increase with several partners
  • add_circle
    The animated transitions and improved interaction design led to significant increases in user engagement
Industry Influence
  • add_circle
    Selected by Material UI (MUI) library
  • add_circle
    Extended impact to broader design community

Datepicker demo

This is a fairly faithful recreation of the original that resulted from several rounds of research. The original had some additional optimizations (using pseudo-elements for performance, implementing view recycling, etc.) and features (like storing the selected dates as search params, highlighting especially low prices, etc.), but from an interaction point-of-view, this is accurate.

S

M

T

W

T

F

S

April

April

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

May

May

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

June

June

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

July

July

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

August

August

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

September

September

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

October

October

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

November

November

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

December

December

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

January

January

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

February

February

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

March

March

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

Selection Logic
  • add_circle
    You can start by selecting either a departure or return date
  • add_circle
    Once you select the first date, you can pick any date for the other end of your trip
  • add_circle
    You can modify either date at any time by clicking the date field or selecting a new date on the calendar
  • add_circle
    If you pick a return date that's before your departure, the system automatically swaps them to create a valid range
  • Price Display
  • add_circle
    Before selecting any dates, each day shows the cheapest possible round-trip starting on that day
  • add_circle
    After picking a departure date, each future date shows the total price for that specific round-trip
  • add_circle
    Once both dates are selected, the price reflects the total cost of your trip
  • Solution

    Starting with Google Flights' specific needs but designing for broader applicability, created a datepicker component that balanced three key requirements.

    Intuitive Interaction

    Created a framework that supported both casual users booking weekend getaways and power users planning multi-leg business trips

    • add_circle
      Developed a natural date selection flow that worked equally well for single dates, ranges, and complex multi-city itineraries
    • add_circle
      Solved for complex multi-city booking first to create flexible framework
    Smooth Motion Design

    Improved user experience and made implementation more efficient across teams

    • add_circle
      Created precise motion specifications for transitions and animations that enhanced user understanding
    • add_circle
      As noted by Senior Engineer Kevin Fox: 'Perfecting the itinerary selection/deselection animations took me over a week of work, and each iteration saved me at least 50% of that time'
    Cross-Platform Consistency

    Consistent experience across web and mobile platforms

    • add_circle
      Designed a flexible system that maintained visual and interaction consistency across web and mobile platforms
    • add_circle
      Respected platform-specific conventions while maintaining core interaction model

    Component Specification

    The component consists of several key elements that work together to provide a seamless date selection experience. This implementation was used as the reference for the Material Design guidelines. This design standard was then extended to the MUI open source React project, which is used by thousands of developers.

    Datepicker specification diagram
    • 1
      Title - Displays "SELECTED RANGE" header
    • 2
      Selected date range display (Nov 17 - Nov 26)
    • 3
      Switch to keyboard input mode button
    • 4
      Month/year selection dropdown (November 2018)
    • 5
      Month navigation controls
    • 6
      Start of selected range (November 17)
    • 7
      End of selected range (November 26)

    Process

    Initial Analysis
    • add_circle
      Conducted competitive analysis of travel booking sites
    • add_circle
      Identified key pain points and scattered landscape
    Design Development
    • add_circle
      Created framework for complex multi-city bookings
    • add_circle
      Developed precise motion specifications
    • add_circle
      Designed cross-platform consistency
    Implementation
    • add_circle
      Worked with engineering teams
    • add_circle
      Iterated on animations and interactions
    • add_circle
      Validated across different platforms

    Role

    UX Engineer

    Tools

    Sketch, Sublime Text, Google Cloud

    Tech

    App Engine, HTML, CSS, JavaScript