Visiblility in flutter
When we click on any option the red dot should be visible otherwise red dot should not be visible. So, I'm thinking about using the visible but I can't using it properly. So, please help me in this.
When we click on any option the red dot should be visible otherwise red dot should not be visible. So, I'm thinking about using the visible but I can't using it properly. So, please help me in this.
I am trying to implement OTP verification in my Flutter app using Firebase, but I am facing an issue where the verification fails even though both the sent and entered OTP are the same. I am using the following function…
Hi all, I would like to add a screen that slowly appears form the bottom or the screen and partially covers the main screen below. So you can still see the top part of the main screen. Does anyone know…
I have created a feedback screen but I am unable to clear the text from my rounded input field even after using controller.clear or controller.text ="" My feedback screen code(only attaching relevant code to make it easy to understand): class…
This is the result that I want. This is the current output that I have. How can I achieve this result specifically the lines that are present in between the list tiles? I am using a ListView to show the…
I'm having bottom overflowed by pixels flutter when showing keyboard, i tried SingleChildSCrollView and still couldn't find the solution for it. my aim to make the Get.defaultDialog scrollable. here my code : class AddCard extends StatelessWidget { final homeCtrl =…
I am trying to run my flutter application in ios, and while pod installs I am getting an error ([!] No podspec found for flutter_user_agentx in .symlinks/plugins/flutter_user_agentx/ios). I am using a dependency named "flutter_user_agentx", On android is working fine, a…
I am newbie in learning coding, hi i want to show show the post created time like 2hours ago or 30 minutes ago like that, how to do that i only have the created time like 2023-01-13 10:35:52", how to…
I am using google auth and i want to save user data in database...How can i get user details here and save it to database? Future<void> signUpWithGoogle( BuildContext context, bool mounted, ) async { final googleSignIn = GoogleSignIn(); final googleUser…
i am creating a social media like app, when user clicks on post ,it redirects to a commentpage,in commentspage data is coming from a seperate API,so when go back using Navigator.pop(context), the data in home is not updated, if pressed…