I have that question, I am looking for examples everywhere and all I see are those examples of adding inputs with ng-repeat, but I don't want that, all I want is to have a button which says add another input and once the user click on it, have a new input text below the existing one.
<div>
<div>
<input ng-model="operation.detailText" type="text">
<div ng-show="operation.detailText.length">
<p ng-show="operation.detailText.length">{{operation.detailText}}</p>
</div>
</div>
ng-repeat?