All Questions
Tagged with flutter flutter-animation
2,764 questions
0
votes
0
answers
17
views
Create a Flutter Dismissible with rounded borders
For my quiz app in Flutter, I am trying to create a widget for invitations to a new quiz. To accept / decline it, a Dismissible is used to swipe the invitation to the left (decline, red background) or ...
1
vote
0
answers
48
views
Change card stack animation from flip to physical card browsing
I'm working on a Flutter app with a stacked card animation, but I need to change how the animation works. Currently, the cards flip when scrolling, but I want a different effect.
import 'dart:math';
...
0
votes
1
answer
35
views
How to allow AdvancedDrawer swipe-to-open gesture OVER Slidable/Dismissible list items?
I have a Flutter layout using flutter_advanced_drawer for a navigation drawer and a ListView containing items wrapped in flutter_slidable (or Dismissible) for swipe actions (e.g., delete on right-to-...
2
votes
0
answers
41
views
Animated Filter UI Gets Hidden Behind AppBar When Expanding
I am using a Stack widget in my Flutter app to display a list of products along with a filter UI that slides up from the bottom when triggered. The filter UI is implemented using AnimatedPositioned.
...
0
votes
1
answer
158
views
Flutter build fails: Cannot find symbol PluginRegistry.Registrar and FlutterMain
I am working on a Flutter project using the awesome_notifications plugin (version 0.9.3+1 also try new version), and I am encountering build errors when running flutter build apk or flutter run.
C:\...
0
votes
1
answer
53
views
GestureDetector onTap not working on Positioned Widget
I am using a Stack widget to display a Container with a Positioned text widget. However, the issue is that the onTap function does not work when clicking on the Positioned widget, but it works when ...
1
vote
1
answer
71
views
How can I achieve a card scroll animation in Flutter that matches my reference video in flutter
I'm developing a Flutter app where I need a scroll card screen with a smooth animation. I tried using the multiple card package, but the animation isn't matching my reference video. Specifically, the ...
0
votes
1
answer
50
views
How to Generate a DOCX Invoice in Flutter?
I am working on generating invoices in a Flutter app and need to create a DOCX file. Currently, I am using the docx_template: ^0.4.0 package, which requires creating a pre-designed template file (...
2
votes
1
answer
69
views
Achive infinite animation in flutter for prompts
I am building a three-row prompt slider in Flutter that needs to scroll both automatically and manually. I'm having trouble implementing the infinite scrolling behavior.
I tried using PageView with a ...
0
votes
2
answers
48
views
How to enable interaction with background elements while using DraggableScrollableSheet with showBottomSheet?
I'm using the showBottomSheet method to display a bottom sheet in my Flutter app. However, when I wrap my content inside a DraggableScrollableSheet, it blocks interaction with the rest of the screen.
...
0
votes
1
answer
61
views
Why am I seeing crossed boxes on this flutter app
I am seeing crossed boxes in place of icons on this flutter app I am developing, I have tried adding custom fonts and I can't seem to get a way around this issue, here are the screenshots
image ...
0
votes
0
answers
53
views
how can I integrate draggable and animatedList together?
My goal is to make the Floating Action Buttons (FABs) animate smoothly to fill the empty space when I pick one up using Draggable. However, I haven’t been able to achieve this.
I want to create an ...
1
vote
1
answer
65
views
How to fix this lerp method override in creating a customized ThemeData of my own?
I am trying to write a custom ThemeData which I can pass to the extensions property of the ThemeData and be able to access them easily in my project. I have attached below the minimal code of what I ...
2
votes
1
answer
51
views
Nested Scroll issue in DraggableScrollabeSheet
UI for dragsheet
What UI Have?
DraggableScrollableSheet for bottom sheet with scroll behavior.
A Top UI to achieving Sticky Top bar
List of element to show the content
What should it do?
Whole ...
0
votes
2
answers
125
views
How to create Nested L shaped Widget in Flutter
I want to create the following L shaped design : -
This can be created using simple Column , Row and Expanded Widgets but I am not able to think it through. Design must be responsive as the Size of ...