Commit 55bc771f authored by Dan Rubel's avatar Dan Rubel Committed by GitHub

flutter devices indicate which are simulators (#6200)

parent 38533ac8
......@@ -249,6 +249,8 @@ abstract class Device {
return devices.map((Device device) {
String supportIndicator = device.isSupported() ? '' : ' (unsupported)';
if (device.isLocalEmulator)
supportIndicator += ' • simulator';
return '${device.name.padRight(nameWidth)} • '
'${device.id.padRight(idWidth)} • '
'${getNameForTargetPlatform(device.platform)}$supportIndicator';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment