I've been working on angular 4 and I've successfully implemented the functionality of adding flags. However, the issue is that the flags are currently appearing from left to right.
What I'm aiming for is to have the images appear from right to left when a button is clicked.
<div class="padding-10px" *ngFor="let flag of addedlanguage">
<img class="flag" [src]="flag" />
</div>
The flags are coming from an array.