简体   繁体   中英

I´m using mat-tabs from angular/material but the Labels aren't shown. How can i change it so my labels are displayed?

I have this Template:

<mat-tab-group class="tasks" mat-align-tabs="center">
    <mat-tab label="Uncompleted" >
        <ng-container class="tasks" *ngFor="let task of tasks" class="task">
            <mat-card class="task" *ngIf="task.done === false">
                <mat-checkbox
                    class="example-margin"
                    [checked]="task.done" 
                    (change)="changeCompletitionState(task)"
                > 
                    {{task.description}} 
                </mat-checkbox>
            </mat-card>
        </ng-container>
    </mat-tab>
</mat-tab-group>

But the Labels of the Tabs aren´t displayed as you can see in the screenshot below.

在此处输入图像描述

How can i fix that?

@ Will Alexander: "You may be using a theme where the basic text is white. Try selecting where the labels should be to see if there is white text. If so, you need to add the mat-app-background class to the surrounding element."

works for me

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM