Is there a way for me to dynamically generate new elements such as buttons, labels, or textfields within a layout?
Here is the code snippet I currently have:
<AbsoluteLayout ref="abs">
<Label :text="L('UserClockIn.info.5')" top="10" left="10" />
<Label class="stk-table-row-data" :text="clockInTimes[0]" top="10" left="100" />
<Label class="stk-table-row-data" :text="clockInTimes[1]" top="10" left="165" />
<Label class="stk-table-row-data" :text="clockInTimes[2]" top="10" left="230" />
</AbsoluteLayout>
I am working with nativescript-vue and typescript, and I am looking to create a new label or button element and insert it into the absolute layout.