CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2022-07-08
by Ridha Rezzag

Original Post

Original - Posted on 2019-06-01
by nick.tdr



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

Try adding this
tileColor: Colors.blue,
like this
Expanded( child: ListTile( tileColor: Colors.blue, leading: FlutterLogo(), title: Text('These ListTiles are expanded '), ), ),
Just wrap your Row with a Container with colour property like below:
Container( color: Colors.black, child: Row( children: <Widget>[ Expanded( child: Text('Demo', style: TextStyle(color: Colors.white),), ) ], ), )

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