CopyPastor

Detecting plagiarism made easy.

Score: 0.8741390705108643; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2024-03-24
by Umar

Original Post

Original - Posted on 2024-03-24
by Umar



            
Present in both answers; Present only in the new answer; Present only in the old answer;

wrap content with column and add widget like container set that width

showDialog( context: context, builder: (context) { return AlertDialog( title: const Text("Bookmark"), insetPadding: const EdgeInsets.all(0), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), content: Column( mainAxisSize: MainAxisSize.min, children: [ Container( color: Colors.red, width: screen.width * 0.70, ) ], ), ); });
just wrap content with column
showDialog( context: context, builder: (context) { return AlertDialog( title: const Text("Bookmark"), insetPadding: const EdgeInsets.all(0), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), content: Column( mainAxisSize: MainAxisSize.min, children: [ Container( color: Colors.red, width: screen.width * 0.70, ) ], ), ); });

        
Present in both answers; Present only in the new answer; Present only in the old answer;