Modeling Apps using AppBuilder
Example
const string color = "#1f5ad2";
var builder = new AppBuilder(
new AppDetails
{
Name = "myapp", // internal app name
Title = "My App", // human-readable display name
PrimaryColor = "#323889", // primary color
SecondaryColor = "#e99333", // secondary color
Avatar = "SA", // avatar
HomePageId = AppConstants.Pages.HomePage, // specify home page
}
);Explanation
Last updated