CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2022-09-28
by Tasnuva Tavasum oshin

Original Post

Original - Posted on 2019-12-04
by Lucas De Lavra Pinto



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

Card( color: Colors.grey[900], shape: RoundedRectangleBorder( side: BorderSide(color: Colors.white70, width: 1), borderRadius: BorderRadius.circularOnly(left: 10), ), margin: EdgeInsets.all(20.0), child: Container( child: Column( children: <Widget>[ ListTile( title: Text( 'example', style: TextStyle(fontSize: 18, color: Colors.white), ), ), ], ), ), ),
When Card I always use RoundedRectangleBorder.

Card( color: Colors.grey[900], shape: RoundedRectangleBorder( side: BorderSide(color: Colors.white70, width: 1), borderRadius: BorderRadius.circular(10), ), margin: EdgeInsets.all(20.0), child: Container( child: Column( children: <Widget>[ ListTile( title: Text( 'example', style: TextStyle(fontSize: 18, color: Colors.white), ), ), ], ), ), ),

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