This will not add any Scrollbar but it will be Scrollable.
Container(
height: 60,
width: MediaQuery.of(context).size.width,
margin: EdgeInsets.only(left: 15,right: 15,top: 10),
child: ListView(
children: <Widget>[
TextField(
minLines: 1,
maxLines: 5,
decoration: InputDecoration(
focusedBorder:OutlineInputBorder(
borderSide: BorderSide(color: Colors.black54,)
),
border: InputBorder.none,
isDense: true
),
)
],
),
),
Container(
padding:EdgeInsets.only(top:20,right:10,left:10),
child:Card(
shape:RoundedRectangleBorder(
borderRadius:BorderRadius.circular(20),
),
color:Colors.grey,
child: Container(
padding:EdgeInsets.only(left:12),
child: TextFormField(
decoration:InputDecoration(
hintText:"You phone number here...",
border:InputBorder.none,
fillColor:Colors.white,
),
),
),
),
),