|
|
|
@ -43,93 +43,93 @@ class _DeviceInfoPlusPageState extends AppState<DeviceInfoPlusPage> {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
|
children: [ |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleID, |
|
|
|
|
desc: l10n.deviceInfoPlusDescID, |
|
|
|
|
future: model.getID(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleName, |
|
|
|
|
desc: l10n.deviceInfoPlusDescName, |
|
|
|
|
future: model.getName(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleVersion, |
|
|
|
|
desc: l10n.deviceInfoPlusDescVersion, |
|
|
|
|
future: model.getVersion(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitlePrettyName, |
|
|
|
|
desc: l10n.deviceInfoPlusDescName, |
|
|
|
|
future: model.getPrettyName(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleGNSS, |
|
|
|
|
desc: l10n.deviceInfoPlusDescGNSS, |
|
|
|
|
future: model.hasGNSS(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleNFC, |
|
|
|
|
desc: l10n.deviceInfoPlusDescNFC, |
|
|
|
|
future: model.hasNFC(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleBluetooth, |
|
|
|
|
desc: l10n.deviceInfoPlusDescBluetooth, |
|
|
|
|
future: model.hasBluetooth(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleWlan, |
|
|
|
|
desc: l10n.deviceInfoPlusDescWlan, |
|
|
|
|
future: model.hasWlan(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleMaxCpuClockSpeed, |
|
|
|
|
desc: l10n.deviceInfoPlusDescMaxCpuClockSpeed, |
|
|
|
|
future: model.getMaxCpuClockSpeed(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleNumberCpuCores, |
|
|
|
|
desc: l10n.deviceInfoPlusDescNumberCpuCores, |
|
|
|
|
future: model.getNumberCpuCores(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleBatteryCharge, |
|
|
|
|
desc: l10n.deviceInfoPlusDescBatteryCharge, |
|
|
|
|
future: model.getBatteryChargePercentage(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleMainCameraResolution, |
|
|
|
|
desc: l10n.deviceInfoPlusDescMainCameraResolution, |
|
|
|
|
future: model.getMainCameraResolution(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleFrontalCameraResolution, |
|
|
|
|
desc: l10n.deviceInfoPlusDescFrontalCameraResolution, |
|
|
|
|
future: model.getFrontalCameraResolution(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleRamTotalSize, |
|
|
|
|
desc: l10n.deviceInfoPlusDescRamTotalSize, |
|
|
|
|
future: model.getRamTotalSize(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleRamFreeSize, |
|
|
|
|
desc: l10n.deviceInfoPlusDescRamFreeSize, |
|
|
|
|
future: model.getRamFreeSize(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleScreenResolution, |
|
|
|
|
desc: l10n.deviceInfoPlusDescScreenResolution, |
|
|
|
|
future: model.getScreenResolution(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleOsVersion, |
|
|
|
|
desc: l10n.deviceInfoPlusDescOsVersion, |
|
|
|
|
future: model.getOsVersion(), |
|
|
|
|
), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.deviceInfoPlusTitle, |
|
|
|
|
desc: l10n.deviceInfoPlusDesc, |
|
|
|
|
title: l10n.deviceInfoPlusTitleDeviceModel, |
|
|
|
|
desc: l10n.deviceInfoPlusDescDeviceModel, |
|
|
|
|
future: model.getDeviceModel(), |
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|