CopyPastor

Detecting plagiarism made easy.

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

Possible Plagiarism

Plagiarized on 2021-08-04
by Hemal

Original Post

Original - Posted on 2019-10-09
by 97loser



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

Use regular Ink with a decoration.borderRadius property.
Here is your updated code
Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(20), ), child: Ink( decoration: BoxDecoration( borderRadius: BorderRadius.circular(20), image: DecorationImage( image: AssetImage( 'images/footer_poster.png', ), fit: BoxFit.cover, ), ), child: InkWell( borderRadius: BorderRadius.circular(20), onTap: () { Navigator.of(context, rootNavigator: true).push( CupertinoPageRoute<bool>( fullscreenDialog: true, builder: (BuildContext context) => FP(), ), ); }, child: Center( child: Text( title, style: TextStyle( color: Colors.white, fontSize: 30, fontWeight: FontWeight.bold), ), ), ), ), ),
You can add `Container` and `ListView` in `Column`.
```dart import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); }
class _MyAppState extends State<MyApp> { @override void initState() { // TODO: implement initState super.initState(); }
@override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( appBar: AppBar( title: Text("Demo App1"), ), body: Column( children: <Widget>[ Container( height: 40.0, child: Row( children: <Widget>[ Container( padding: EdgeInsets.all(4.0), width: 100.0, child: Text( "Name", style: TextStyle(fontSize: 18), )), Container( padding: EdgeInsets.all(4.0), width: 100.0, child: Text( "Age", style: TextStyle(fontSize: 18), )), ], ), ), Expanded( child: ListView.builder( itemCount: 100, itemBuilder: (BuildContext context, int index) { return Row( children: <Widget>[ Container( padding: EdgeInsets.all(4.0), width: 100.0, child: Text( "Name $index", style: TextStyle(fontSize: 18), )), Container( padding: EdgeInsets.all(4.0), width: 100.0, child: Text( "Age $index", style: TextStyle(fontSize: 18), ), ) ], ); }, ), ), ], ), ), ); } } ```

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