msaltnet / T.Viewer

Cross Platform Tizen Log Viewer
https://blog.msalt.net/313
MIT License
15 stars 7 forks source link

[task] power icon 변경 -> device connect icon으로. #63

Closed msaltnet closed 3 years ago

msaltnet commented 3 years ago

현재 power icon은 사실 adb dlog 동작에 해당 한다. device disconnected 상태에서 파일로부터 로딩하는 기능을 추가 하기 위해서도 해당 아이콘은 power -> connect icon으로 변경이 필요하다.

msaltnet commented 3 years ago

https://materialdesignicons.com/ 에서 connect tag로 검색, connection icon이 좋을듯.

msaltnet commented 3 years ago

app.vue

      <v-switch
        dense
        hide-details
        color="red"
        v-model="switchListen"
        v-on:change="onSwitchChange"
        prepend-icon="mdi-power"
        class="mx-1"
        :disabled="state!='connected'"
      ></v-switch>

참고

msaltnet commented 3 years ago

a0c8d03

done!