AngularDart Сова Карусель - PullRequest
       16

AngularDart Сова Карусель

0 голосов
/ 07 сентября 2018

Я пытаюсь реализовать совую карусель, используя Angular, мой код как ниже

<section id="demos">
<div class="row">
    <div class="large-12 columns">
        <div class="owl-carousel owl-theme">
            <div class="item" *ngFor="let item of items">
                <carouselFixture [stream]="item.stream" *ngIf="item.viewModelType == 'ItemSummary'" >
            </div>
        </div>
    </div>
 </div>
</section>

In the below image I had highlighted the area that is done using Owl Carousel

Вывод Сова Карусель странный, может кто-нибудь помочь мне, как решить эту проблему. Я разработал приложение, используя Dart и Angular

...