skip to Main Content

Create a travel plan widget like in blablacar.

It there a built in class/widget in flutter to accomplish a travel plan like in many travel apps? Like in the screenshot.
You have the times on the left, an icon in the middle and then a place on the right. You then can have many such rows and a line connecting them.
I have tried it using ‘Stepper’ but the end result is not the same and there is a lot of customization involved.
enter image description here

2

Answers


  1. Try Using This:

    order_tracker_zen: ^1.0.0+4
    

    or

    order_tracker: ^0.0.2
    
    Login or Signup to reply.
  2. exactly !. Use the Stepper widget form material.dart .

    Refer docs here – stepper docs
    Here's example

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search