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),),
)
],
),
)