2,776 questions
0
votes
1
answer
96
views
Flutter constantly freezing and waiting for ages
I'm working on a flutter mobile app on android mainly, currently there is a page that is a simple dropdown and button, and 3 text inputs and another button, the dropdown is retrieving a list from my ...
0
votes
0
answers
43
views
laggy keyboard animation while appearing
Problem is when clicking on textfield the keyboard appears laggily.
it does not appears in instant like it does on whatspp or any other application
no matter how big size of application is , it will ...
0
votes
1
answer
92
views
Mouse scroll wheel feels laggy and not smooth in my Flutter website
I'm building a website using Flutter Web, but when I scroll using the mouse scroll wheel, it doesn’t feel smooth it’s kind of laggy or jumpy compared to websites built with React or standard HTML/CSS.
...
1
vote
0
answers
125
views
I want to recreate these curves using Flutter
I’m new to Flutter and trying to replicate a design that has curved shapes with categories displayed along the curve .
I’ve tried using ClipPath, but I haven’t been able to get the bottom arc to match ...
1
vote
1
answer
83
views
Flutter Hero text: smooth on push, but from bold to normal snaps on pop. How to interpolate style on return?
I’m animating a user name with Hero. On push (list → detail) the text flies and smoothly grows/bolds. On pop (detail → list) it flies back, but the bold → normal change looks like a snap right at ...
0
votes
0
answers
49
views
How to centralize zoom in InteractiveViewer (not with alignment)
I need the zooming yellow square to zoom when pinch, but i wish to make the center of the square always the center of the parent widge ( basically disabling pan when zooming with pinch ). Aligment ...
0
votes
0
answers
71
views
Keyboard hide/show and focus transitions are not smooth on registration screen
I’m building a registration screen in my first Flutter app.
Issue: when the keyboard shows/hides or when I move focus between fields (email → password → confirm), the layout jumps and the keyboard ...
1
vote
1
answer
179
views
Search Text Field Animation in Flutter
I want to achieve this animation and accurate shadows to the button : -
the Tricky part would be getting shadow of the circular button , I tried using both foreground , and decoration property of ...
2
votes
1
answer
131
views
Animated TextField Flutter - How can I create a textfield in Flutter where the hint text animates with suggestions smoothly?
In some apps (e.g., BlinkIt, Swiggy, etc.), the search field shows animated suggestions instead of a static placeholder.
For example, the hint text rotates/animates between:
“Search fruits”
“Search ...
1
vote
1
answer
116
views
Sending debugPrint message to the screen
I am using flutter_map to show some GeoJSON polygon layers and things work nicely. I am wondering how their properties can be displayed as popup knowing that polygons can be clickable and properties ...
0
votes
1
answer
83
views
How can a widget be displayed alone if it overlaps others?
I have three cards positioned 10 pixels from the bottom-left corner within a Stack as follows:
Positioned(
bottom: 10,
left: 10,
child: Card(
elevation: 0,
color: Colors.white,
child:...
1
vote
0
answers
128
views
Can a transformed widget in Flutter size itself dynamically based on its child's post-transform size?
I'm trying to apply a 3D transformation (specifically a perspective + Y-axis rotation) to a widget in Flutter using Transform. The visual result is close to what I want, but I noticed the parent ...
1
vote
1
answer
83
views
State changes are very slow
This is a notes app that will use microphone to write notes. Everything is working great but state changes are very delayed. When the MicButton is pressed, the icon should change instantly, but it ...
3
votes
2
answers
183
views
How to create a conic gradient border?
I'm working on a Flutter app and trying to replicate a Figma design for a container with an angular (conic) gradient border. Despite multiple attempts, I can't achieve the exact look specified in the ...
1
vote
1
answer
100
views
Flutter Animate Widget Transition
Need help with simulating transition of widgets from one location to another. The new location is the location of another widget.
If anyone is familiar with Framer Motion's layoutid, it's similar to ...