Hey guys I’ve been trying to get this done in flutter and I cannot figure it out and pulling my hair out. If anybody could help please
I Will have those populate under each other and each will have a small biography text of the person and their image and their name like shown in the picture. Also the date it was posted right at the very bottom. I am not advanced in flutter yet so please help.
flutter help
How can we reduce the gap between the TextFormField and validation message error
I want to remove the space between the TextFormField and the validation error message in Flutter which comes when we validate the form using formState.validate()
How can i build a Flutter comment widget that switches between IconButton and TextField with smooth a transition?
In Flutter, I have built a carousel PageView for a list of widgets (media files). I want a seamless way to add comments to the currentPage widget. I don’t want a TextField permanently attached at the bottom, but switch from IconButton to TextField upon user engagement. What I have right now works, but it’s really ugly :/
How to Implement Voice Interaction Animations in a Flutter App?
I’m developing a personal assistant app in Flutter that records your voice and provides responses, similar to ChatGPT. I want to add animations that visually indicate when the user is speaking and when the bot is responding. Specifically, I’m looking for animations like the circle that animates with the voice input and reflects the speaking activity.
Question how to achieve this shape in flutter
how to achieve this shape in flutter
How do I push my floatingactibutton when the keyboard appears – Flutter
return Scaffold( resizeToAvoidBottomInset: false, floatingActionButton: floatingWidget(Get.height, Get.width), backgroundColor: backgroundColor, body: ListView( padding: EdgeInsets.only(), children: [ HeaderLogoWidget(width: Get.width, height: Get.height), sectionWidget(Get.height, Get.width), ], ), ); I need my Textfield to be focused when focus is pressed on it, and any bottombar at the bottom to be pushed up. Widget sectionWidget(double height, double width) { return Container( […]
Infinite background translate animation from left to right in flutter
I want to animate my background image from left to right in an infinte loop so that it gives the illusion of a continuous animation. I could not find anything on the internet. I have tried tween animation but it reset to original position once the animation is ended.
Flutter caused ScrollController has no ScrollPosition attached
I am currently reading Flutter Cookbook – Second Edition by Simone Alessandria and encountered an exception in Chapter 6 related to the stopwatch.dart file. When I run the code, I get the following exception:
How to apply custom physcis in pageview when control with pageview controller
i want to apply my custom physics to pageview if i am changing page by swiping by fingers it’s working but if i am changeing page by pageviewcontroller.nextPage() or pageviewcontroller.previousPage() my custom physics not applying to pageview
How can I flip two Flutter FlipCards simultaneously?
I’m developing an app with Flutter using the FlipCard package.
I have a grid with 12 FlipCards, I need to select two covered cards, flip them to show what’s behind, perform some checks, and If the checks do not pass, I need to flip back both cards and until the flip animation is completed I shouldn’t be able to click to reveal other cards (this is to avoid introducing bugs).