Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
96 views

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 ...
FrancoisBee's user avatar
0 votes
0 answers
43 views

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 ...
Tushar Kaul's user avatar
0 votes
1 answer
92 views

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. ...
OM BELEKAR's user avatar
1 vote
0 answers
125 views

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 ...
vale elghaouth's user avatar
1 vote
1 answer
83 views

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 ...
zh0tx's user avatar
  • 42
0 votes
0 answers
48 views

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 ...
sharknado's user avatar
0 votes
0 answers
71 views

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 ...
Jelon's user avatar
  • 12
1 vote
1 answer
179 views

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 ...
Ramji's user avatar
  • 60
2 votes
1 answer
131 views

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 ...
Deekshith Xetty's user avatar
1 vote
1 answer
114 views

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 ...
Gery's user avatar
  • 9,255
0 votes
1 answer
83 views

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:...
Gery's user avatar
  • 9,255
1 vote
0 answers
128 views

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 ...
Indrajeet Singh's user avatar
1 vote
1 answer
83 views

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 ...
Mujtaba Farhan's user avatar
3 votes
2 answers
182 views

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 ...
Syed Rehan's user avatar
  • 1,339
1 vote
1 answer
100 views

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 ...
cup's user avatar
  • 13
1 vote
0 answers
91 views

I'm building a Flutter app with a custom bottom navigation bar using Rive animations. Each navigation item has a Rive animation that plays on tap, and pages are switched using IndexedStack. Problem: ...
yolo5's user avatar
  • 11
2 votes
1 answer
118 views

For a chat app, it's a common design pattern to build a chat bubble that shows the send time (a Widget) inline in with the content (a TextSpan), but aligned to the end of the text direction. If the ...
PRATHIV's user avatar
  • 608
0 votes
1 answer
100 views

I'm trying to use Flutter to recreate a video editor effect of zooming in on a screen containing text and rectangles and the text seems to irritatingly jump up and down as the font size is increased. ...
Pete Alvin's user avatar
  • 4,830
-3 votes
1 answer
144 views

I’m working on a Flutter app where I want to display progress in a more engaging way. Specifically: I want to show a horizontal progress bar It should animate when progress changes It should ...
waka's user avatar
  • 55
0 votes
0 answers
60 views

I would like to animate a change of a widget by letting one widget leave the screen in one direction and let the next widget come from the same direction (but opposite side) AnimatedSwitcher( ...
Uwe.Schneider's user avatar
1 vote
1 answer
92 views

I am currently using persistent_bottom_nav_bar: 6.2.1 and trying to use OpenContainer to navigate between screens with animation. However, the problem is that when I use PersistentTabView as the main ...
Verdi's user avatar
  • 13
0 votes
1 answer
71 views

This is my code for text form field TextFormField( autovalidateMode: AutovalidateMode.onUserInteraction, validator: (value) { if (value =...
Arnab Ghosh's user avatar
0 votes
1 answer
61 views

I am New to Flutter and I decided to Learn Slivers in flutter and I Stuck in SliverAppBar and I have SliverAppBar with Background Color of Transparent and When I Scroll then I can See My ...
Abdullah Hameed's user avatar
1 vote
2 answers
122 views

I have a page with TextFormField. (autofocus:true). When pressing the Continue button, the user is taken to the next screen, the keyboard should close before that FocusManager.instance.primaryFocus?....
Dima's user avatar
  • 1,329
0 votes
0 answers
74 views

I am working on a Flutter project where I need to animate an arrow along a path. The arrow should not only move along the path, but also continuously adjust its angle to match the direction of the ...
vicky_prog's user avatar
1 vote
1 answer
83 views

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 ...
soosmann's user avatar
  • 119
1 vote
0 answers
74 views

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'; ...
IniOluwa Longe's user avatar
0 votes
0 answers
51 views

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-...
Anas Al-Sharif's user avatar
2 votes
0 answers
49 views

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. ...
Misbah Khan's user avatar
0 votes
1 answer
2k views

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:\...
rajadurai indium's user avatar
0 votes
1 answer
86 views

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 ...
Krishna M's user avatar
1 vote
1 answer
181 views

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 ...
Mohammad Faizan's user avatar
0 votes
1 answer
84 views

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 (...
Aakash thakur's user avatar
2 votes
1 answer
110 views

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 ...
Hardik Mehta's user avatar
  • 2,473
0 votes
2 answers
97 views

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. ...
Rehan's user avatar
  • 182
0 votes
1 answer
88 views

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 ...
Emily Mgimwa's user avatar
0 votes
0 answers
61 views

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 ...
Ali's user avatar
  • 1
1 vote
1 answer
80 views

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 ...
rusty's user avatar
  • 1,231
2 votes
1 answer
88 views

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 ...
Amjad Ali's user avatar
0 votes
2 answers
152 views

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 ...
Ramji's user avatar
  • 60
0 votes
1 answer
118 views

[![enter image description here][1]][1] [1]: https://i.sstatic.net/bZSXtA7U.png**strong text** import 'package:flutter/material.dart'; import 'dart:math'; void main() { runApp(const MaterialApp( ...
prabin maharjan's user avatar
0 votes
1 answer
36 views

I'm using animate_do: ^3.1.2 and when I use FadeInUp on a TextField the animation restarts, for example, when I write in one and then in another the animation restarts, however the text I wrote there ...
Carlos Ramirez's user avatar
0 votes
0 answers
24 views

I have a stack with some transformed items to display them radial. Now I want to increase the size of an element if one hovers over it in Web or is over it with the finger on mobile. I tried using ...
progNewbie's user avatar
  • 4,942
0 votes
1 answer
58 views

I am building an flashcard app with Flutter and encountering a problem if you want to flip the front and backside of the card. The "flipping" is an AnimatedSwitcher and after it the text of ...
Fabian Lüdicke's user avatar
2 votes
2 answers
246 views

My Flutter widgets are flickering while scrolling on low-end phones, and I don't know the reason. I used Image.network, and I get the image URL and text from GitHub. Based on how many data entries are ...
Arthor's user avatar
  • 23
3 votes
0 answers
79 views

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
0 answers
57 views

I build one flutter app. I am facing JANK issue on the app in real device. [✓] Flutter (Channel stable, 3.27.1, on macOS 15.2 24C101 darwin-arm64, locale en-US) [✓] Android toolchain - develop for ...
user25770779's user avatar
0 votes
0 answers
79 views

I want a very simple animation that is turning to be not that simple. This is how it behaves now. I need it to have smooth transitions between states and the buttons to take full available width of ...
JAgüero's user avatar
  • 716
0 votes
1 answer
69 views

I need this result (The app is just for example) I tried to use BottomSheet, modal_bottom_sheet and various similar libraries, but they hide the widget completely. I want it to stay above the ...
Dima's user avatar
  • 1,329
0 votes
0 answers
60 views

I want to implement a drag animation with a smooth transition (not necessarily using Hero). For better clarity, I've attached an image, The two elements shown belong to different screens. I use GetX ...
Harshil Jani's user avatar

1
2 3 4 5
56