xxxxxxxxxx
//Positioning widget at top right corner flutter
Positioned(
top:0.0,
right: 0.0,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: new IconButton(
icon: Icon(Icons.cancel,color: Colors.red,),
onPressed: () {}),
),
)