CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2021-06-12
by Thilina Pathirage

Original Post

Original - Posted on 2019-04-11
by Tahseen Quraishi



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

Wrap the Carousel container with ClipRRect()
child: Column( children: [ SizedBox( height: MediaQuery.of(context).size.height / 10, ), ClipRRect( borderRadius: BorderRadius.circular(20.0), child: Container( height: MediaQuery.of(context).size.height / 5, width: MediaQuery.of(context).size.width / 1.2, child: Carousel( images: [ NetworkImage( 'https://cdn-images-1.medium.com/max/2000/1*GqdzzfB_BHorv7V2NV7Jgg.jpeg'), NetworkImage( 'https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg'), NetworkImage( 'https://cdn-images-1.medium.com/max/2000/1*wnIEgP1gNMrK5gZU7QS0-A.jpeg') ], showIndicator: false, borderRadius: false, moveIndicatorFromBottom: 180.0, noRadiusForIndicator: true, overlayShadow: true, overlayShadowColors: Color(0xff0D6EFD), overlayShadowSize: 0.7, radius: Radius.circular(30.0), ), ), ), SizedBox( height: MediaQuery.of(context).size.height / 10, ), ],
You can use the below code to make a rounded button with a gradient color.
Container( width: 130.0, height: 43.0, decoration: BoxDecoration( borderRadius: BorderRadius.circular(30.0), gradient: LinearGradient( // Where the linear gradient begins and ends begin: Alignment.topRight, end: Alignment.bottomLeft, // Add one stop for each color. Stops should increase from 0 to 1 stops: [0.1, 0.9], colors: [ // Colors are easy thanks to Flutter's Colors class. Color(0xff1d83ab), Color(0xff0cbab8), ], ), ), child: FlatButton( child: Text( 'Sign In', style: TextStyle( fontSize: 16.0, fontFamily: 'Righteous', fontWeight: FontWeight.w600, ), ), textColor: Colors.white, color: Colors.transparent, shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(30.0)), onPressed: () {
}, ), );



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