how to apply neon effects on container in Flutter? - flutter

I want to add to come up with the following UI in flutter.
I added two containers with Stack for the desired locations on the screen.
However, I couldn't make them shine and look like the following image.
Thanks

Have a look at the flutter BackdropFilter application and properties, and try to have this over the coloured spots.
BackdropFilter
You could also look at the Glassmorphism package to achieve a similar effect.
Glassmorphism

Related

how to make a hole in a layer of stack or how to replicate the shown deisgn

Actually i am trying to make the following UI but i am not able to achieve that sort of hole or transparent layer below the yellow button. Have tried glassmorphism plugin and backgrop filters to acheive the glass frost efftet. Just would like to know how to make that hole.
Desired UI:-
You can use clipRRect or clipRect to make this design. these two widgets will help you cut/clip the container in the required shape.
For more information, you can have reference from here.

flutter inversed corner for containers

how can I make two containers intersect in corners like that?
what I want to make is in the red rectangle
to achieve this you have to use Custom Paint.
it is a little hard to do.
Custome Paint This is a good explanation.
Flutter Shapemaker this will make your job very easy.

How to create this effect with flutter. I used BackdropFilter but I think It's not right

I try to apply this effect to my UI. But I can't create a spillover effect. can I achieve this effect with container shadow
Thank you for your help.
This lib builds on BackdropFilter and ImageFilter
https://pub.dev/packages/blur
This is also a useful article if you want to implement it yourself.
https://medium.com/fluttervn/how-to-make-blur-effect-in-flutter-using-backdropfilter-imagefilter-559ffd8ab73

How to draw overlaying shapes in flutter

I'm trying to recreate a UI in flutter that looks like this I need to get this shapes in the position they appear in the image above, I did some research and came across Flutter Custom Paint, tried checking for tutorials on how to use it to achieve this design but can't find anything that points me in the right direction. Please is there anyway in flutter to recreate this UI?
Instead of complicating things
You can use stack for overlapping
And for that circles you can use containers with borderradius
and using positioned widget to position the circles based on your need
MORE THAN THIS
you can export that design as an image and use
Stack{
children[
THAT IMAGE,
YOUR UI,
]}

Overlay/translate ListView builder items clipped with a custom ClipPath

I'm generating multiple widgets(Containers in this case) using a ListView.builder and I also use a custom ClipPath to give a custom shape to them.
I was wondering if would it be possible to translate or somehow overlay those list items in order to place them so that the background(black area in the attached screenshot) would be covered. By that I mean I want to place them right under each other, like puzzle pieces. To be able to fit them right under each other would probably mean they would have to be overlayed somehow. Was googling but without any success.
Hopefully there's some Flutter experts out there who are nice enough to guide me. Thanks a lot!