in Education by
I need to build a pop up dialog box in my app. I am using Dialog class and wrapped it with SizedBox class to increase the width of the dialog box. But, the width of the dialog box is not increasing. How can I increase the width of it? onTap: () { showDialog( context: context, child:SizedBox( width: 900, child: Dialog( backgroundColor :Colors.white, insetAnimationDuration: const Duration(milliseconds: 10), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)), child: Container( child: Column( children: [ Text('hello'), FlatButton( onPressed: () { Navigator.of(context).pop(); }, child: new Text("OK"), ), ] ), ), ), ), ); }, Run code snippetExpand snippet JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
try this `showDialog( context: context, builder: (context) { return Dialog( backgroundColor: Colors.white, insetAnimationDuration: const Duration(milliseconds: 100), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20)), child: Container( // use container to change width and height height: 200, width: 400, child: Column( children: [ Text('hello'), FlatButton( onPressed: () { Navigator.of(context).pop(); }, child: new Text("OK"), ), ], ), ), ); }, );` here i have replaced child parameter of showDialog with builder as it is deprecated and with dailogs , It is margined from screen boundaries. So if you want dailog to fit whole screen it can't But if widder screen or is in landscape so width can be changed to a limit

Related questions

0 votes
    I'm new to flutter and can't resolve the issue. Your application could not be compiled, because its ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I'm new to flutter and can't resolve the issue. Your application could not be compiled, because its ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 15, 2022 in Education by JackTerrance
0 votes
    I am adding an background image to the Splash screen, but is not rendering the image. Sometime it load ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    I'm working on a program that displays a list from an SQFlite table. The future for the snapshot ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 30, 2022 in Education by JackTerrance
0 votes
    I have this operation EventModel data = EventModel(_nameEvent, _passEvent, _localEvent, _dateEventString); HashMap ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 13, 2022 in Education by JackTerrance
0 votes
    I'm getting Authorization failure when trying to display a map in a flutter project using the google maps ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I'm new to Flutter Redux, I got a problem and I have no idea how to deal with it at all! ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    Video does not capture in the right orientation when running the Camera Plugin example app on my iPhone X in Landscape. It works well ... .0+1 environment: sdk: ">=2.0.0-dev.68.0...
asked Apr 12, 2022 in Education by JackTerrance
0 votes
    I am trying to implement the reCaptcha function to my flutter app, but in the captcha registration I need ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
0 votes
    I have some wizard-like pages in my application, its keeping state while navigating between small steps, the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I am trying to do some validation on the file name before it's saved. Here are my three file- ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 14, 2022 in Education by JackTerrance
0 votes
    8. Which shortcut key do we use to display Document Properties dialog box? * O Ctrl + F3 O Ctrl + J O Ctrl + C O Ctrl + F5 Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    2- What values must be inserted in Insert table dialog box to create a table ? Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    hey guys… plz answer this…What are the steps to print a document on a different paper size in Print dialog box. Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    The—- dialog box is used to change the style of line stroke. Select the correct answer from above options...
asked Dec 14, 2021 in Education by JackTerrance
...