How to implement timeline kind of UI in flutter? - flutter

How can we implement UI like the image attached below. I do not know if we can call this timeline UI or not. I found package in pub.dev but could we somehow paint this in flutter?

Related

Can we change the UI of call kit package in flutter

Can we change the UI of the callkit package in a flutter, I want to show a full-screen notification screen for that I am using thecall kit package of flutter, so I have to remove those answer and reject buttons.

Is there a way to do an Image flow on effect with Onboarding Flutter?

Is it possible to do an onboarding experience in Flutter? See the link below...
https://dribbble.com/shots/15798418-Mobile-App-Onboarding
As you can see as the user swipe right to the next screen, the image looks like it is flowing on?
You should have three images, one for screen and try using this package Flutter swiper
I have done the same effect with this package

can't find simple flutter image slideshow package

I cannot find a Flutter slideshow or carousel package that allows me to animate images. The transition effect I want to use is a simple crossfade. I tried a lot of flutter packages without success. Thanks

How to add ads in flutter flame

Like we have sprite to add/render images in flutter flame. Is their any widget or any way to show ads(admob) in flutter flame project.
Since Flame is just another Flutter widget you can use the firebase_admob just like it would have been used in any other Flutter app. There is good documentation of how to use the admob flutter widgets in their readme.
If you want to display an ad on top of the game I suggest that you either use a Stack widget or use the overlays system in Flame.

Scrollable screen over dynamic background

I'm fairly new to Flutter and am trying to accomplish something similar to what is being used in the Pigeon app for iOS. Basically I want an interactive page as a background in the app (like the map in the Pigeon app), and then have different screens appear over that background. These screens should be scrollable, but start at the bottom of the device screen, thus showing both the screen and the dynamic background at the same time. As long as the background is visible in you can interact both with it and the scrollable screen.
I have added a gif below which hopefully helps explaining the issues.
Any guidance on which widgets to look into would be appreciated. I've been experimenting with the Stack widget but can't yet figure out how to accomplish my desired behaviour.
For doing this kind of stuff you have to use sliver widget, which is provide by flutter material package
for more info you can check
Flutter Sliver