All Questions
10 questions
0
votes
1
answer
41
views
Show case view Error - Flutter Mobile App
The showcase view working in debug mode. But in release mode showcase view not displaying.
This ShowCaseWidget widget cannot be marked as needing to build because the framework is already in the ...
0
votes
1
answer
498
views
how to use flutter curve value from high to low
hi guys I just started learning flutter animation and using flutter curves from flutter curve website
using tween value which goes like
_animation = Tween<double>(begin: -100, end: 0)....
0
votes
1
answer
52
views
How to implement a Timer widget where minutes and seconds are vertically displayed
I want to achive the above style in flutter.
What I have implemented so far:
Why is there unnecessary space between the texts.
I have done some debugging:
How can. I remove the vertical padding from ...
1
vote
0
answers
148
views
How do I add Liquid Swipe animation(Flutter) in this particular code
I have added the Liquid Swipe dependency in the pubspec.yaml file. Trying to add the liquid Swipe widget in the below code but unable to figure it out.
Doubt: Where to add the liquid swipe widget and ...
2
votes
0
answers
516
views
How to custom search bar on SliverAppBar flutter
I am new with flutter.
I would like to custom a search widget on SliverAppBar.
On scroll up, I would like it show this search widget with a flexible to nearly cart button as show in pictures.
Code
...
0
votes
2
answers
828
views
Disable icon button in Flutter based on condition
I would prefer to disable icon buttons in a screen depending on a certain condition from Firestore data.
I want to check flag's condition and disable the buttons if flag is 1.
I wrote the onPressed as ...
7
votes
1
answer
5k
views
How to check if two widgets are overlapping in flutter?
I wanted to know if we can check if two widgets in flutter are overlapping. I actually have two AnimatedContainer stacked using Stack. I wanted to check if the children of the two overlap. I actually ...
-2
votes
1
answer
4k
views
How to make such a button click effect?
This effect is similar to a fast-growing rectangle. Because it’s clear that it’s not just round ripples. It even exists in the google play market as in video.
https://youtu.be/ttYRc_zem00
https://...
0
votes
1
answer
2k
views
Repeating Animation and Adjustments in Flutter
I'm trying to clone the timer of the app I use when I workout: Strong. So far, I've managed to implement all the main features and animations (which aren't many). I know my code is messy and there's ...
1
vote
1
answer
3k
views
Animating a Loop in Flutter
I'm trying to make an animation of sorting algorithms in flutter. So far I've coded the algorithm and managed to get some sort of animation by iterating once at a time instead of the whole sorting ...