android 如何删除一个图标在喷气背包组成?

ioekq8ef  于 2023-02-14  发布在  Android
关注(0)|答案(1)|浏览(98)

我有一个可组合的图标在这里:

Icon(   
   painter = 
      if(condition) {
           painterResource(id = .....)
      }else{
           //want to remove icon here
      }     
)

我想删除else语句中的图标,我应该在那里放什么?

ovfsdjhp

ovfsdjhp1#

只需删除Icon

if(condition){
      Icon(painterResource(id = xxx),"contentDescription")      
 }

相关问题