Ionic splash screen and spinner

前端 未结 2 976
感动是毒
感动是毒 2021-01-14 14:44

Is there a way to customize spinner in splash screen? Currently I am using cordova splashscreen plugin and I want to change the color of spinner that appears on the splash s

2条回答
  •  长发绾君心
    2021-01-14 15:35

    well providing color to ion-spinner isn't difficult. You can do like this
    css

    .spinner svg {
      width: 28px;
      height: 28px;
      stroke: #444;
      fill: #444;
    }
    

    html

    
    

    as per Ionic Docs.

提交回复
热议问题