Dynamic UI creation?

Is there, within one of the various UI frameworks for NR, that would allow dynamic UI creation? Here is the use case, I have a JSON, that changes from time to time, I want to create a button for each top level property in the JSON.

The JSON is rather simplistic...

[
    {
        "Name": "One",
        "Key": "1"
    },
    {
        "Name": "Two",
        "Key": "2"
    }
]

Would love to create a follow on when the JSON is loaded... creates two buttons (per the number in the JSON file), where the button label set to name, and payload to key, for example. Anyone do something similar?

Certainly, UIBUILDER can do this for you - you may need to transform the input JSON slightly to fit in with the uib-element node's "Form" setting. There is a built-in example that shows all of the different uib-element settings including forms. The output is a low-code JSON format that the uibuilder client library can convert direct to an HTML Form structure. You also get automatic handling of things like button clicks. You can even do the HTML conversion server-side if you prefer.

There are other ways to do this with UIBUILDER as well, but that may be the simplest.