All Questions
329 questions
2
votes
1
answer
80
views
How to create a layout as shown in the image?
The center circular area is actually a progressbar surrounded by profile picture. I need to show progress using animation. I can get required assets from designer. I am able to achieve the main layout ...
1
vote
1
answer
39
views
Ripple effect behind a widget (no press)
I am currently struggling to create a ripple effect behind a given widget. I am only able to create circular ripples.
The requirements are as such
The ripple should appear as if coming from behind ...
1
vote
0
answers
41
views
How do I animate column/row size with Flutter TableView?
Using the package two_dimensional_scrollables I want to expand and animate the size of a specific column when tapping on it. The code below listens to the user action to change the column size and ref....
1
vote
1
answer
49
views
Flutter: Disable push transition animation but enable it for pop
In Flutter, how do I push a page without any transition animation but when I pop it, I'd like the page to slide from top to bottom.
The following code works partially. It disables the animation during ...
2
votes
0
answers
41
views
Timer Animation Runs Too Fast When "Remove Animations" Accessibility Setting Enabled on Device
I am encountering an issue with the AnimationController API in Flutter. My app includes a timer animation, but I’ve noticed that when the "Remove Animations" option is enabled in the device’...
0
votes
1
answer
54
views
Flutter Issue: Simultaneous Animation of Opacity and Font Size
In Flutter I am trying to animate Opacity and Font Size at the same time, but with different Curves.
Unfortunately it cuts off the text at the top and bottom during the animation.
It is maybe ...
1
vote
1
answer
86
views
Flutter: How to implement zoom animation while navigation
class SplashScreen extends StatefulWidget {
const SplashScreen({super.key});
@override
State<SplashScreen> createState() => _SplashScreenState();
}
class _SplashScreenState extends State<...
2
votes
0
answers
29
views
Why updating state rebuild all widgets [duplicate]
Why setting state of a sibling widget update all the widgets specially custom painter as i make its own stateless widget it should not be effected coz i haven't pass any param from parent.
run sample ...
0
votes
1
answer
57
views
Flutter Animation Controller
I tried to implement list of draggable widget using GestureDetector and AnimationBuilder. But when the particular widget is removed from tree its AnimationController is assigned to next widget in list ...
0
votes
0
answers
152
views
how to animate draggableScrollableSheet and its contents in flutter?
I am trying to emulate this bottom sheet from the find my app on iOS.
I have used draggableScrollableSheet but it does not work as well as the one on find my.
class DraggableSheet extends ...
0
votes
1
answer
42
views
Slide Animation in flutter is not working as expected
I have a widget placed in a stack widget. i want to animate it from bottom right to bottom centre. but whatever i do, it doesnt work. below is the code
import 'package:flutter/material.dart';
class ...
0
votes
0
answers
36
views
How to disable the flutter default List.generate Dropdown effect
enter image description here List.generate( controller.skills.length,
(index) => buildSkillWidget(index))
I'm trying to disable the default dropdown effect of listView when we set the data. I ...
0
votes
0
answers
57
views
How To: Falling circle objects in the viewport (video example)
Things I want to achieve:
the circles start outside the viewport (top side)
circles start falling in the bottom and collide with other circles.
This is my current code. I was able to achieve falling ...
0
votes
0
answers
50
views
Flutter animation stops on user click, but navigation doesn't occur. How can I make cards clickable during animation to trigger navigation?
I'm encountering an issue in Flutter where the user clicks during an animation it will halt the animation but fail to trigger navigation. Specifically, I have cards with animation effects (sliding ...
0
votes
2
answers
617
views
Flutter: Lottie file crashes
Problem: The Lottie files that I downloaded do not show properly.
Details:
This is a screenshot when I run the code:
image_result of the code
And the actual image should be like this:
image_actual ...