2019-11-21 18:23:05 +09:00
|
|
|
<div>
|
|
|
|
<mat-list>
|
|
|
|
<h1 mat-subheader>테마</h1>
|
2019-11-26 10:56:58 +09:00
|
|
|
<!--<ul class="theme-list">
|
2019-11-25 10:57:02 +09:00
|
|
|
<li
|
2019-11-26 10:56:58 +09:00
|
|
|
class="theme-box default"
|
2019-11-25 10:57:02 +09:00
|
|
|
(click)="onSelectedTabChange('theme-default')"
|
|
|
|
></li>
|
|
|
|
<li
|
|
|
|
class="theme-box lgRed"
|
|
|
|
(click)="onSelectedTabChange('theme-lgRed')"
|
|
|
|
></li>
|
2019-11-26 10:56:58 +09:00
|
|
|
</ul>-->
|
|
|
|
<mat-list-item class="theme-select">
|
|
|
|
<mat-tab-group
|
2019-11-25 10:57:02 +09:00
|
|
|
mat-stretch-tabs
|
|
|
|
animationDuration="0ms"
|
|
|
|
(selectedTabChange)="onSelectedTabChange($event)"
|
2019-11-26 10:56:58 +09:00
|
|
|
fxLayout="row"
|
|
|
|
class="theme-list"
|
2019-11-25 10:57:02 +09:00
|
|
|
>
|
|
|
|
<mat-tab>
|
2019-11-26 10:56:58 +09:00
|
|
|
<ng-template mat-tab-label class="theme-item">
|
2019-11-25 10:57:02 +09:00
|
|
|
<div class="theme-box default-theme"></div>
|
2019-11-26 10:56:58 +09:00
|
|
|
<div class="theme-name">기본값</div>
|
2019-11-25 10:57:02 +09:00
|
|
|
</ng-template>
|
|
|
|
</mat-tab>
|
|
|
|
<mat-tab>
|
2019-11-26 10:56:58 +09:00
|
|
|
<ng-template mat-tab-label class="theme-item">
|
2019-11-25 10:57:02 +09:00
|
|
|
<div class="theme-box lg-red-theme"></div>
|
2019-11-26 10:56:58 +09:00
|
|
|
<div class="theme-name">LG Red</div>
|
2019-11-25 10:57:02 +09:00
|
|
|
</ng-template>
|
|
|
|
</mat-tab>
|
2019-11-26 10:56:58 +09:00
|
|
|
</mat-tab-group>
|
2019-11-21 18:23:05 +09:00
|
|
|
</mat-list-item>
|
|
|
|
|
|
|
|
<mat-divider></mat-divider>
|
|
|
|
|
|
|
|
<h1 mat-subheader>응용 프로그램</h1>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-checkbox>응용 프로그램 자동 시작</mat-checkbox>
|
|
|
|
</mat-list-item>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-checkbox>백그라운드에서 응용 프로그램 열기</mat-checkbox>
|
|
|
|
</mat-list-item>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-checkbox>닫을 시 응용 프로그램을 계속 실행</mat-checkbox>
|
|
|
|
</mat-list-item>
|
|
|
|
|
|
|
|
<mat-divider></mat-divider>
|
|
|
|
|
|
|
|
<h1 mat-subheader>로그인</h1>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-checkbox>실행 시 자동 로그인</mat-checkbox>
|
|
|
|
</mat-list-item>
|
|
|
|
|
|
|
|
<mat-divider></mat-divider>
|
|
|
|
|
|
|
|
<h1 mat-subheader>언어</h1>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-form-field fxFlexFill>
|
|
|
|
<mat-select>
|
|
|
|
<mat-option value="ko-KR">
|
|
|
|
한국어 (대한민국)
|
|
|
|
</mat-option>
|
|
|
|
<mat-option value="en-US">
|
|
|
|
영어 (미국)
|
|
|
|
</mat-option>
|
|
|
|
</mat-select>
|
|
|
|
</mat-form-field>
|
|
|
|
</mat-list-item>
|
|
|
|
|
|
|
|
<mat-divider></mat-divider>
|
|
|
|
|
|
|
|
<h1 mat-subheader>시간대</h1>
|
|
|
|
<mat-list-item>
|
|
|
|
<mat-form-field fxFlexFill>
|
|
|
|
<mat-select>
|
|
|
|
<mat-option value="ko-KR">
|
|
|
|
한국어 (대한민국)
|
|
|
|
</mat-option>
|
|
|
|
<mat-option value="en-US">
|
|
|
|
영어 (미국)
|
|
|
|
</mat-option>
|
|
|
|
</mat-select>
|
|
|
|
</mat-form-field>
|
|
|
|
</mat-list-item>
|
|
|
|
</mat-list>
|
|
|
|
</div>
|