Skip to main content

All Questions

Tagged with
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 ...
Prabhu M's user avatar
  • 3,598
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 ...
Freshcart Engineering's user avatar
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....
Gabz95's user avatar
  • 21
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 ...
user246392's user avatar
  • 3,047
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’...
Rohit Neel's user avatar
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 ...
Floorian93's user avatar
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<...
VISHNU PRABHAKARAN's user avatar
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 ...
Burhan Khanzada's user avatar
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 ...
Razer's user avatar
  • 75
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 ...
Nithin Sai's user avatar
  • 1,023
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 ...
muhammed jasir's user avatar
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 ...
Faizan's user avatar
  • 1
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 ...
xamantra's user avatar
  • 1,016
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 ...
Tejaswini Dev's user avatar
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 ...
임건호's user avatar

15 30 50 per page
1
2 3 4 5
22