CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2022-09-29
by Tayfun Kaya

Original Post

Original - Posted on 2021-01-29
by Amit Prajapati



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

for ex. that is my data
const String _SexData = """[ { "sex": "Seçiniz / Choice", "x": 1000 }, { "sex": "Male", "x": 1001 }, { "sex": "Female", "x": 1002 } ]""";


and I calling it;
DropdownButton<int>( iconEnabledColor: Colors.blue, dropdownColor: const Color.fromARGB(255, 28, 185, 242), style: const TextStyle(color: Colors.black), value: sex?.x ?? 1000, items: model1.sexs.map((a) { return DropdownMenuItem( child: Text(a.sex, style: const TextStyle(color: Colors.white)), value: a.x, onTap: () { setState(() { sex = a; }); }, ); }).toList(), onChanged: (s) {}, ),
**PhysicalModel** will help you to give it elevation shadow.
Container( alignment: Alignment.center, child: Column( children: <Widget>[ SizedBox( height: 60, ), Container( child: PhysicalModel( borderRadius: BorderRadius.circular(20), color: Colors.blue, elevation: 18, shadowColor: Colors.red, child: Container( height: 100, width: 100, ), ), ), SizedBox( height: 60, ), Container( child: PhysicalShape( color: Colors.blue, shadowColor: Colors.red, elevation: 18, clipper: ShapeBorderClipper(shape: CircleBorder()), child: Container( height: 150, width: 150, ), ), ) ], ), )
[![enter image description here][1]][1]

[1]: https://i.stack.imgur.com/0SsHt.jpg

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