I have a Flutter app that displays an animation. I want the animation to pause if there is an open Drawer or a modal dialog (like <code>showModalBottomSheet</code>) di...
<strong>What I want to achieve:</strong> I want to open a pop up explaining my app when it starts. <strong>My approach:</strong> As far as I understand it from...
I'm having an issue with my Dialog. I have a home screen with code to navigate to a second screen like so: <pre><code>Navigator.push(context, MaterialPage...
i've implemented a function to handle message received onbackground from FCM. Now i need to show something to user when the app is in background. I've imported...
I want to show a dialog when user long pressed on an item and pop it when finger up but it can't detect tap up. I put dialog on another GestureDetector and use...
I am trying to display an alert. I am using rflutter package. But it is not working somehow, I am not getting it. I am trying to display an alert. I am using r...
I'm trying to style a Dialog() widget; but it doesn't realy let me deal with height and widht as I'd usually do it. In a nutshell: I placed all content in a Con...
I want to change the obscureText mode of a TextFormField in an AlertDialog but it doesn't work Clicking the IconButton does not change the obscureText to TextFo...
I am new to flutter and I am using Getx package for state management and route management. I have tried many ways to give get default dialog full-screen width but noth...
I have ListView in Alert Dialog with Search (Filter). In normal screen the search with list is working but when I adding in AlertDialog it not works. Below is my code,...
I need a little help with an issue I can't seem to understand quite completely. I am pratcicing with AWS and I need to display a message for my Login screen after the...
I am trying to Show the showModelBottomSheet() and It's perfectly working ,There is a Button in bottomSheet ,,So Whenever I pressed this Button it Show/ return a new...
Can i showDialog inside a function without passing context? <pre><code>void test(){ showDialog(context: context, builder: (_) => AlertDialog( content:...
I want to display data from sqlite to SimpleDialog widget <pre><code>showDialog( context: context, barrierDismissible: true, builder: (BuildContext contex...
I can't understand the difference between all those classes. I found several examples and all they use different classes with no visual difference in result. For examp...