CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2021-12-15
by Darshini R Gowda

Original Post

Original - Posted on 2021-02-23
by mar0ne



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

``` bottom: PreferredSize( preferredSize: const Size.fromHeight(kToolbarHeight), child: Align( alignment: Alignment.centerLeft, child: Container( width: MediaQuery.of(context).size.width / 1.1, child: TabBar( isScrollable: true, labelPadding: EdgeInsets.all(0), labelColor: Colors.white, labelStyle: poppins.copyWith( fontSize: 15, fontWeight: bold, ), unselectedLabelColor: Color(0xff585861), indicatorColor: Colors.white, indicatorSize: TabBarIndicatorSize.label,
// TABS tabs: [ Tab( text: 'Following', ), Tab( text: 'Trending', ), Tab( text: 'Search', ), ], ), ), ), ) ```
Wrap the Container with Expanded()
Expanded (child: Container( padding: new EdgeInsets.only(right: 24.0), child: new CircleAvatar( backgroundColor: new Color(0xFFF5F5F5), radius: 16.0, ) ), new Container( padding: new EdgeInsets.only(right: 13.0), child: new Text( 'Text lar...', overflow: TextOverflow.ellipsis, style: new TextStyle( fontSize: 13.0, fontFamily: 'Roboto', color: new Color(0xFF212121), fontWeight: FontWeight.bold, ), ), ),

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