https://akveo.github.io/nebular/docs/components/select/overview#nbselectcomponent
Is it possible to have a preselected value when the page is loaded ?
try this:
<nb-select id="theme" [selected]="currentTheme" (selectedChange)="changeTheme($event)" status="primary">
<nb-select-label [innerHtml]="selectedTheme"></nb-select-label>
<nb-option langg *ngFor="let theme of themes" [value]="theme.value"> {{ theme.name | langg }}</nb-option>
</nb-select>