CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2022-06-30
by Vikash Tiwari

Original Post

Original - Posted on 2019-12-19
by Speedy11



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

check the note I had mentionedin below code
Padding( padding: EdgeInsets.symmetric(vertical: 5), child: Container( // color: Colors.purple, // margin: const EdgeInsets.only(top: 45, bottom: 15), padding: const EdgeInsets.only(left: 20, right: 20), child: Row( children: [ Expanded( child: Column( //Note : Add this crossAxisAlignment: CrossAxisAlignment.start, children: [ Text("Bengaluru"), Text("R.T Nagar") ]), ), customContainer(iconData: Icons.search,), SizedBox(width: 10,), customContainer(iconData: Icons.notifications,), ])), ),
If anybody is looking for complete circular button then I achieved it this way:
Center( child: SizedBox.fromSize( size: Size(80, 80), // Button width and height child: ClipOval( child: Material( color: Colors.pink[300], // Button color child: InkWell( splashColor: Colors.yellow, // splash color onTap: () {}, // Button pressed child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Icon(Icons.linked_camera), // Icon Text("Picture"), // Text ], ), ), ), ), ), )




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