Add icon for more settings preference

BUG: 343317785
Test: atest DeviceSettingRepositoryTest
Flag: com.android.settings.flags.enable_bluetooth_device_details_polish
Change-Id: Id7c272edce5ff8166f03b7162ac9ba5ff1f15097
This commit is contained in:
Haijie Hong
2024-09-25 16:55:31 +08:00
parent 7e7530bfd1
commit 63ecd2781f

View File

@@ -362,7 +362,12 @@ class DeviceDetailsFragmentFormatterImpl(
) )
.launch() .launch()
} }
override val icon = @Composable { deviceSettingIcon(null) } override val icon =
@Composable {
deviceSettingIcon(
DeviceSettingIcon.ResourceIcon(R.drawable.ic_chevron_right_24dp)
)
}
} }
) )
} }